aboutsummaryrefslogtreecommitdiffstats
path: root/src/clock.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2010-05-01 22:14:40 -0400
committerKevin O'Connor <kevin@koconnor.net>2010-05-01 22:14:40 -0400
commit0e88576feb7c577d2e6d3cda469f751db962a380 (patch)
tree4c80421b8b7528772d93c9bc8b035a44b4146a87 /src/clock.c
parentdd5a8a6b0d3c2d8320cb26ea8ac6798091070f9a (diff)
downloadseabios-0e88576feb7c577d2e6d3cda469f751db962a380.tar.gz
Add support for USB mice.
Initial support for USB mice that follow the "boot" protocol.
Diffstat (limited to 'src/clock.c')
-rw-r--r--src/clock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clock.c b/src/clock.c
index 4756ea8c..c79f3924 100644
--- a/src/clock.c
+++ b/src/clock.c
@@ -12,7 +12,7 @@
#include "pic.h" // eoi_pic1
#include "bregs.h" // struct bregs
#include "biosvar.h" // GET_GLOBAL
-#include "usb-hid.h" // usb_check_key
+#include "usb-hid.h" // usb_check_event
// RTC register flags
#define RTC_A_UIP 0x80
@@ -452,7 +452,7 @@ handle_08(void)
SET_BDA(timer_counter, counter);
- usb_check_key();
+ usb_check_event();
// chain to user timer tick INT #0x1c
u32 eax=0, flags;