fork download
  1. name prog
  2. .model small
  3. .data
  4. db 21h
  5. db 24h
  6. x1 dd 12345678h
  7. x2 dd 12345678h
  8. x3 db ?
  9. x4 db ?
  10. x5 db ?
  11. db 'st'
  12. x6 dw 6345h
  13. x7 dt 11134567854543335h
  14. x8 dt 56876867867834533h
  15. dw ?
  16. x9 dq 734545h
  17. db '*'
  18. db '='
  19. db '+'
  20. .code
  21.  
  22. start:
  23. mov ax,@data
  24. mov ds,ax
  25.  
  26. exit:
  27. mov ax,4C00h
  28. int 21h
  29.  
  30. end start
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.asm:1: error: parser: instruction expected
prog.asm:2: error: parser: instruction expected
prog.asm:30: error: parser: instruction expected
ld: cannot find prog.o: No such file or directory
stdout
Standard output is empty