X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fdrv%2Fkb.c;h=6577882cf1686da25d9d1bb74ac51c5e135546bb;hb=5c9451f7e03edf59a3066853ae544c9d120bf90a;hp=ba9eb72cdeda37aeaad1ed40ba6cdd6ce403049a;hpb=45f9a29e481ce9ea7ca7121541f0e0f90147f5b1;p=tpg%2Facess2.git diff --git a/Kernel/drv/kb.c b/Kernel/drv/kb.c index ba9eb72c..6577882c 100644 --- a/Kernel/drv/kb.c +++ b/Kernel/drv/kb.c @@ -83,17 +83,15 @@ 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); - //Log("KB_IRQHandler: scancode = 0x%02x", scancode); - // Ignore ACKs if(scancode == 0xFA) { - // Oh man! This is anachic (I'm leaving it here to represent the - // mess that Acess once was) + // Oh man! This is anarchic (I'm leaving it here to represent + // the mess that Acess once was) //kb_lastChar = KB_ACK; return; }