home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c010
/
1.ddi
/
FLILIB3.ZIP
/
FLISRC3.ZIP
/
JKEYIS.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
|
384 b
|
20 lines
dosseg
.model large
.code
;_dos_key_is() - returns 1 if a key is ready to read from keyboard, 0 otherwise
public _dos_key_is
_dos_key_is proc far
mov ah,1
int 16h
jz ret0
jmp retit
ret0:
xor ax,ax
retit:
ret
_dos_key_is endp
END