View Single Post
Old May 19th, 2006, 3:14 PM   #26
kruptof
Professional Programmer
 
kruptof's Avatar
 
Join Date: May 2006
Location: UK - London
Posts: 333
Rep Power: 3 kruptof is on a distinguished road
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
kruptof is offline   Reply With Quote