home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 9
/
09.iso
/
l
/
l224
/
2.img
/
CHAPXMPL.ZIP
/
DELAY.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1990-10-29
|
315 b
|
17 lines
DOSSEG
.MODEL SMALL
.STACK 200h
.CODE
Delay:
mov cx,0
DelayLoop:
loop DelayLoop
ret
ProgramStart:
call Delay ;pause for the time required to
; execute 64K loops
mov ah,4ch
int 21h
END ProgramStart