]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg/counter.c
packet receive code; keyboard injection
[netwatch.git] / aseg / counter.c
index f5a2602da9344fe7d1a4d7dbd9338034934e0997..73003da26c6890024b2e32d28266a194d51ec693 100644 (file)
@@ -7,6 +7,7 @@
 #include "../net/net.h"
 #include "vga-overlay.h"
 #include "packet.h"
+#include "keyboard.h"
 
 unsigned int counter = 0;
 unsigned long pcisave;
@@ -29,8 +30,21 @@ void pci_dump() {
                //dologf("READ: %08x (%02x)", cts, b);
                if ((cts & 0xFFFF) == 0x64)
                        curdev = (b & 0x20) ? 1 : 0;
-               if ((curdev == 0) && ((cts & 0xFFFF) == 0x60) && (b == 0x01))
-                       outb(0xCF9, 0x4);
+
+               if ((curdev == 0) && ((cts & 0xFFFF) == 0x60))
+               {
+                       /*  This is a keyboard read. */
+                       if (b == 0x01) {
+                               /* Reset. */
+                               outb(0xCF9, 0x4);
+                               return;
+                       }
+
+                       if (kbd_get_injected_scancode()) {
+                               b = kbd_get_injected_scancode();
+                       }
+               }
+
                *(unsigned char*)0xAFFD0 /* EAX */ = b;
                break;
        }
@@ -86,6 +100,8 @@ void gbl_rls_handler(smi_event_t ev)
        if (packet->type == 42) {
                dump_log((char *)packet->data);
                *(unsigned long*)0xAFFD4 = 42;
+       } else if (packet->type == 0xAA) {
+               kbd_inject_key('A');
        } else {
                *(unsigned long*)0xAFFD4 = 0x2BADD00D;
        }
This page took 0.016431 seconds and 4 git commands to generate.