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