-hi,
i have some troubles with this code:
it compiles fine with tasm, but when running it print an infinite lines of point '.'
How to fix the number of lines to print ?
help
thx
i have some troubles with this code:
Code:
.MODEL Tiny
.CODE
ORG 100h
Start:
Repeat:
mov al,'.'
int 29h
mov ah,86h
xor cx,cx
mov dx,50000
int 15h
mov ah,1
int 16h
jz Repeat
xor ah,ah
int 16h
cmp ax,011Bh
jne Repeat
int 20h
END Start
it compiles fine with tasm, but when running it print an infinite lines of point '.'
How to fix the number of lines to print ?
help
thx