《操作系统》的实验代码。
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

14 líneas
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