电信
联通
收藏 本站
源码
按键处理相关函数
源代码下载
提供5个子程序:
1. 发送按键 sendkey
2. 检测是否有按键 testkey
3. 读取按键 getkey
4. 判断键盘缓冲区是否为空 bufempty
5. 判断键盘缓冲区是否已满 buffull
具体功能及参数描述如下
sendkey proc far ; ax=charcode testkey proc far ; out: ; zf=1 buff empty; ; zf=0 ax=key code getkey proc far ; out: ; ax=key code ; if buf empty, it will wait bufempty proc far ; test key buffer be empty or not ; out: ; zf=0 not empty; zf=1 empty buffull proc far ; test key buffer be full or not ; out: ; zf=0 not full; zf=1 full
更多 源代码下载