fork download
  1. .model small
  2. .stack 64
  3. .data
  4. .code
  5. .startup
  6.  
  7. mov dl,'S'
  8.  
  9.  
  10. disp proc
  11. mov ah,2
  12. int 21h
  13. disp endp
  14.  
  15. .exit
  16. 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:2: error: attempt to define a local label before any non-local labels
prog.asm:2: error: parser: instruction expected
prog.asm:3: error: attempt to define a local label before any non-local labels
prog.asm:4: error: attempt to define a local label before any non-local labels
prog.asm:5: error: attempt to define a local label before any non-local labels
prog.asm:10: error: parser: instruction expected
prog.asm:13: error: symbol `disp' redefined
prog.asm:13: error: parser: instruction expected
stdout
Standard output is empty