diff options
Diffstat (limited to 'drivers/ps2.c')
| -rw-r--r-- | drivers/ps2.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/ps2.c b/drivers/ps2.c index c9ff30e..9da026d 100644 --- a/drivers/ps2.c +++ b/drivers/ps2.c @@ -4,6 +4,7 @@ #include "io.h" #include "isr.h" #include "ps2.h" +#include "ps2_keymaps.h" static void ps2_wait(void) { @@ -19,6 +20,8 @@ void ps2_set_leds(uint8_t status) outb(0x60, status); } +static uint8_t keyboard_state[16]; + static void key_handler(struct regs_t *regs) { (void) regs; |