fork download
  1. section.data
  2. msg db "hello world",10
  3. len equ $-msg
  4. section .text
  5. global _start
  6. _start:
  7. mov rax,1
  8. mov rdi,1
  9. mov rsi,msg
  10. mov rdi,len
  11. syscall
  12. mov rax,60
  13. mov rdi,0
  14. syscall
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty