From: John Hodge Date: Sun, 11 Apr 2010 07:06:01 +0000 (+0800) Subject: Fixed bug in keyboard driver on real hardware (aux p/s2 port code) X-Git-Tag: rel0.06~248 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=0e9730abc6c9ba710a3f71356720a70d79e407ab;p=tpg%2Facess2.git Fixed bug in keyboard driver on real hardware (aux p/s2 port code) --- diff --git a/Kernel/Makefile.BuildNum b/Kernel/Makefile.BuildNum index 4abfa3e2..10d13caf 100644 --- a/Kernel/Makefile.BuildNum +++ b/Kernel/Makefile.BuildNum @@ -1 +1 @@ -BUILD_NUM = 1816 +BUILD_NUM = 1817 diff --git a/Kernel/drv/kb.c b/Kernel/drv/kb.c index 18f431ae..6577882c 100644 --- a/Kernel/drv/kb.c +++ b/Kernel/drv/kb.c @@ -83,7 +83,7 @@ void KB_IRQHandler() // int keyNum; // Check port 0x64 to tell if this is from the aux port - if( inb(0x64) & 0x20 ) return; + //if( inb(0x64) & 0x20 ) return; scancode = inb(0x60); // Read from the keyboard's data buffer //Log_Debug("Keyboard", "scancode = %02x", scancode);