1
0
Fork 0

Added keyboard intercept to int 0x15

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@238
This commit is contained in:
Sjoerd van der Berg 2002-08-28 09:26:45 +00:00
parent e4e0137e66
commit 69d34db7ec

View file

@ -145,6 +145,10 @@ static Bitu INT15_Handler(void) {
LOG_WARN("Request BIOS Configuration INT 15 C0");
CALLBACK_SCF(true);
break;
case 0x4f: /* BIOS - Keyboard intercept */
/* Carry should be set but let's just set it just in case */
CALLBACK_SCF(true);
break;
case 0x84: /* BIOS - JOYSTICK SUPPORT (XT after 11/8/82,AT,XT286,PS) */
//Does anyone even use this?
LOG_WARN("INT15:84:Bios Joystick functionality not done");