fork download
  1. global _start
  2.  
  3. section .data
  4.  
  5. section .text
  6.  
  7. _start:
  8. xor eax, eax
  9. xor edx, edx
  10. mov dl, "0"
  11. mov ah, 02h
  12. ;int 21h
  13.  
  14. exit:
  15. mov eax, 01h ; exit()
  16. xor ebx, ebx ; errno
  17. int 80h
  18.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
Standard output is empty