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