fork download
  1. global _start
  2.  
  3.  
  4.  
  5. _start:
  6. mov ax, 1234h
  7. mov bx, 56789h
  8.  
  9.  
  10. read:
  11. push ax, 03h ; read()
  12. push bx, 00h ; stdin
  13. write:
  14. pop ax;
  15. pop bx;
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.asm:7: warning: word data exceeds bounds
prog.asm:11: error: invalid combination of opcode and operands
prog.asm:12: error: invalid combination of opcode and operands
stdout
Standard output is empty