《操作系统》的实验代码。
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
169 B

  1. .include "defines.h"
  2. .data
  3. hello:
  4. .string "hello world\n"
  5. .globl main
  6. main:
  7. movl $SYS_write,%eax
  8. movl $STDOUT,%ebx
  9. movl $hello,%ecx
  10. movl $12,%edx
  11. int $0x80
  12. ret