没人知道么?
在Ascll表中的按键,他的按键码低字节是Ascll码,可是高字节有什么规律吗?
我用程序返回的值看出
Esc:0x11b
Tab: 0xf09
A: 0x1e61
B: 0x3062
貌似高字节没什么规律啊
程序如下:
#include "stdio.h"
#include "conio.h"
#include "bios.h"
int main()
{
int key;
for(;;)
{
key = bioskey(0);
printf("You input key is 0x%x\n",key);
if(0x11b == key)
{
break;
}
}
getchar();
return 0;
}