fork download
  1. .Model Small
  2.  
  3. .Stack 64
  4.  
  5. .Data
  6. msg DB 13,10, "Hello$"
  7.  
  8. CNT DW 20
  9. .code
  10.  
  11. .startup
  12.  
  13. mov CX,CNT
  14.  
  15. Next:
  16.  
  17. mov AH,09h
  18.  
  19. Lea DX,msg
  20.  
  21. Int 21h
  22.  
  23. Loop Next
  24.  
  25. .exit
  26.  
  27. end
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.asm:1: error: attempt to define a local label before any non-local labels
prog.asm:1: error: parser: instruction expected
prog.asm:3: error: attempt to define a local label before any non-local labels
prog.asm:3: error: parser: instruction expected
prog.asm:5: error: attempt to define a local label before any non-local labels
stdout
Standard output is empty