fork download
  1. MODEL TINY
  2. STACK 256
  3. DATASEG
  4. Hellostr DB 'Hello First Step Site '
  5. CODESEG
  6. start:
  7.  
  8. mov ax,@data
  9. mov ds,ax
  10. mov cx,4
  11. w1:
  12. dec cx
  13. push cx
  14. mov bx,1
  15. mov cx,21
  16. mov dx,offset Hellostr
  17. mov ah,40h
  18. int 21h
  19. pop cx
  20. jcxz endprog
  21. jmp w1
  22. endprog:
  23. mov ah,04Ch
  24. mov al,1h
  25. int 21h
  26. end start
  27.  
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:16: error: comma, colon or end of line expected
prog.asm:26: error: parser: instruction expected
stdout
Standard output is empty