fork download
  1. section .data
  2. msg db 'hello, world!', 0xa
  3. len equ $ - msg
  4.  
  5. section .text
  6. global_start
  7.  
  8. _start:
  9. mov edx, len
  10. mov ecx, msg
  11. mov eax, 4
  12. int 0x80
  13. mov eax, 1
  14. int 0x80
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty