diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-11-07 07:09:27 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-11-07 07:09:27 +0200 |
commit | f1f711bd25323fd19d7f77e6323b3c3164c1b671 (patch) | |
tree | 8049e89258ea780321ea4e8661e069d7cab80e81 /i686 | |
parent | lib: migrate tests to gtest (diff) | |
download | kernel-f1f711bd25323fd19d7f77e6323b3c3164c1b671.tar.xz |
Capture ps2 mouse packets
Diffstat (limited to 'i686')
-rw-r--r-- | i686/isr.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -41,9 +41,10 @@ irq0x01(__attribute__((unused)) struct interrupt_frame *frame) pic_clear(0x01); } +extern void mouse_packet(); __attribute__((interrupt)) void irq0x0c(__attribute__((unused)) struct interrupt_frame *frame) { - printf("irq 0x0c\n"); + mouse_packet(); pic_clear(0x0c); } |