University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test.s 131B

12345678910111213141516
  1. .globl main
  2. foo:
  3. pushl %ebp
  4. movl %esp,%ebp
  5. movl 8(%ebp),%eax
  6. sall $1,%eax
  7. popl %ebp
  8. ret
  9. main:
  10. pushl $10
  11. call foo
  12. ret