fork download
  1. .text
  2. .global main
  3.  
  4. main:
  5.  
  6. movl $len,%edx
  7. movl $msg,%ecx
  8. movl $1,%ebx
  9. movl $4,%eax
  10. int $0x80
  11.  
  12.  
  13. movl $0,%ebx
  14. movl $1,%eax
  15. int $0x80
  16.  
  17. .data
  18.  
  19. msg:
  20. .ascii "Hello World!\n"
  21. len = . - msg
  22.  
Success #stdin #stdout 0.01s 1564KB
stdin
Standard input is empty
stdout
Hello World!