From 69d34db7ec7cc248a500d052d942ccd62f7eaf63 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Wed, 28 Aug 2002 09:26:45 +0000 Subject: [PATCH] Added keyboard intercept to int 0x15 Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@238 --- src/ints/bios.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ints/bios.cpp b/src/ints/bios.cpp index ff8e2fe6..57466e78 100644 --- a/src/ints/bios.cpp +++ b/src/ints/bios.cpp @@ -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");