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