Initial checkin.
[seabios.git] / src / serial.c
1 // 16bit code to handle serial and printer services.
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 // INT 14h Serial Communications Service Entry Point
12 void VISIBLE
13 handle_14(struct bregs *regs)
14 {
15     debug_enter(regs);
16 }
17
18 // INT17h : Printer Service Entry Point
19 void VISIBLE
20 handle_17(struct bregs *regs)
21 {
22     debug_enter(regs);
23 }