home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 15
/
CDACTUAL15.iso
/
cdactual
/
program
/
asm
/
PJ96.ZIP
/
ALIB.ZIP
/
GET_INPU.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1991-06-25
|
268 b
|
20 lines
include asm.inc
public get_input_state
.code
;; get input state
;
; exit Zf if no key waiting
; uses AX
; note returns TRUE for keyboard, mouse, and timer under Windows
;
get_input_state proc
mov ah,1
int 16h
ret
get_input_state endp
end