blob: ac0d9b08e66353bed127c571801b32f6b735f408 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ac,v 1.2 2001/05/25 23:01:31 kei Exp $
--- iodev/keyboard.cc.orig Wed May 16 15:54:39 2001
+++ iodev/keyboard.cc Fri May 25 15:50:39 2001
@@ -954,6 +954,11 @@
return;
break;
+ case 0xf0: // set scancode - let OS time out
+ bx_printf("KBD: set scancode command received\n");
+ return;
+ break;
+
case 0xf2: // identify keyboard
bx_printf("KBD: identify keyboard command received\n");
kbd_enQ(0xFA); // AT sends ACK, MFII sends ACK+ABh+41h
|