home *** CD-ROM | disk | FTP | other *** search
- ;****************************************************************************
- ; Filename: KBHIT.ASM
- ; Author: Peter Andersson
- ; Version: 0.0
- ; Created: 1995.02.09
- ; Updated: -
- ;****************************************************************************
- ; Copyright Peter Andersson, 1994-1995.
- ; All rights reserved.
- ;****************************************************************************
- ; Function: int kbhit(void);
- ; Comment: Checks to see if if a keyboard is ready.
- ; Input: -
- ; Output: zero if not ready, non-zero if key is ready.
- ;****************************************************************************
-
- Include STDDEF.INC
-
- Codeseg
-
- Proc kbhit
- mov ah,0bh
- int 21h
- movsx eax,al
- Ret
- Endp
-
- End