Initial checkin.
[seabios.git] / src / kbd.c
1 // 16bit code to handle keyboard requests.
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 // Copyright (C) 2002  MandrakeSoft S.A.
5 //
6 // This file may be distributed under the terms of the GNU GPLv3 license.
7
8 #include "biosvar.h" // struct bregs
9 #include "util.h" // debug_enter
10
11 void
12 handle_15c2(struct bregs *regs)
13 {
14 }
15
16 // INT 16h Keyboard Service Entry Point
17 void VISIBLE
18 handle_16(struct bregs *regs)
19 {
20     //debug_enter(regs);
21 }
22
23 // INT09h : Keyboard Hardware Service Entry Point
24 void VISIBLE
25 handle_09(struct bregs *regs)
26 {
27     debug_enter(regs);
28 }
29
30 // INT74h : PS/2 mouse hardware interrupt
31 void VISIBLE
32 handle_74(struct bregs *regs)
33 {
34     debug_enter(regs);
35 }