try playing around with this code even more but this time the DOS window just freezes when ever i run this program, here is the code:
Quote:
jmp start
save db 4 dup '$'
start:
mov di,0
jmp calc
calc:
mov ah,01
int 21h
mov [save+di],al
inc di
cmp al,13
jnz calc
add save,10
fini:
mov ah,4CH
mov al,00
|