aboutsummaryrefslogtreecommitdiff
path: root/src/serial.c
blob: 554108909f41844d099fb64789e0c0b220a5402c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 16bit code to handle serial and printer services.
//
// Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002  MandrakeSoft S.A.
//
// This file may be distributed under the terms of the GNU GPLv3 license.

#include "biosvar.h" // struct bregs
#include "util.h" // debug_enter

// INT 14h Serial Communications Service Entry Point
void VISIBLE
handle_14(struct bregs *regs)
{
    debug_enter(regs);
}

// INT17h : Printer Service Entry Point
void VISIBLE
handle_17(struct bregs *regs)
{
    debug_enter(regs);
}