blob: 9f3d7ad964afded45efd6bd7bc72fd8efdb249c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-ac,v 1.1 1999/10/25 16:05:38 drochner Exp $
--- iodev/keyboard.cc.orig Sun Oct 24 00:17:37 1999
+++ iodev/keyboard.cc Sun Oct 24 00:18:02 1999
@@ -972,6 +972,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: indentify keyboard command received\n");
kbd_enQ(0xFA); // AT sends ACK, MFII sends ACK+ABh+41h
|