fork download
  1. global _start
  2.  
  3. section .data
  4.  
  5. section .text
  6.  
  7. _start:
  8. mov ah,8
  9. mov al,5
  10. mov bh,-6
  11. mov bl,-7
  12. mov ch,8
  13. ; your code goes here
  14. je exit
  15.  
  16. exit:
  17. mov eax, 01h
  18. xor ebx, ebx
  19. int 80h
  20.  
Success #stdin #stdout 0s 152KB
stdin
Standard input is empty
stdout
Standard output is empty