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