fork download
  1. .model small
  2. .stack 256
  3.  
  4. .code
  5.  
  6. start:
  7.  
  8. mov dl, 'X'
  9. mov ah, 2h
  10. int 21h
  11.  
  12. ; All programs use the following 3 lines to terminate
  13.  
  14. mov ax, 4c00h
  15. int 21h
  16.  
  17. end start
  18.  
  19.  
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:2: error: attempt to define a local label before any non-local labels
prog.asm:2: error: parser: instruction expected
prog.asm:4: error: attempt to define a local label before any non-local labels
prog.asm:17: error: parser: instruction expected
stdout
Standard output is empty