fork download
  1. global _start
  2.  
  3. section .data
  4.  
  5. section .bss
  6. len equ 120
  7. msg resb len
  8. section .text
  9.  
  10. _start:
  11. mov eax, 3
  12. mov ebx,0
  13. mov ecx, msg
  14. mov edx, len
  15.  
  16. mov eax, 4
  17. mov ebx,1
  18. mov ecx, msg
  19. mov edx, len
  20. je exit
  21.  
  22. exit:
  23. mov eax, 01h ; exit()
  24. xor ebx, ebx ; errno
  25. int 80h
  26.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty