fork download
  1. section .data
  2. msg db 'Hello, world!',0xA
  3. len equ $-msg
  4.  
  5. section .text
  6. global _start
  7. _start:
  8. mov edx,len
  9. mov ecx,msg
  10. mov ebx,1
  11. mov eax,4
  12. int 0x80
  13.  
  14. mov ebx,0
  15. mov eax,1
  16. int 0x80
  17.  
Success #stdin #stdout 0.01s 144KB
stdin
Standard input is empty
stdout
Hello, world!