University stuff.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920
  1. .extern write_char
  2. .extern write_int
  3. .extern write_string
  4. .global _main
  5. .global main
  6. _main:
  7. main:
  8. call prog$hellox
  9. movl $0,%eax
  10. ret
  11. prog$hellox:
  12. enter $32,$1
  13. movl $120,%eax
  14. pushl %eax
  15. call write_char
  16. addl $4,%esp
  17. leave
  18. ret