home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c010
/
1.ddi
/
FLILIB3.ZIP
/
FLISRC3.ZIP
/
WAITVBL.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-08-29
|
256 b
|
17 lines
dosseg
.model large
.code
public _aa_wait_vblank
_aa_wait_vblank proc far
mov dx,3dah ;video status port
wvb:
in al,dx
test al,8
jz wvb
ret
_aa_wait_vblank endp
END