fork download
  1. .text
  2. global _start
  3. _start: call hello ; OK
  4. mov eax, 60
  5. xor edi, edi
  6. syscall
  7.  
  8. .text
  9. hello: mov eax, 1
  10. mov edi, eax
  11. lea rsi, [msg]
  12. mov edx, len
  13. syscall
  14. ret
  15. .rodata
  16. msg: db 'Hello World!', 10
  17. len equ $-msg
Success #stdin #stdout 0s 4356KB
stdin
Standard input is empty
stdout
Hello World!