]> Joshua Wise's Git repositories - netwatch.git/blame - include/output.h
More ICH2-specific code diked out.
[netwatch.git] / include / output.h
CommitLineData
f1584bb0
JW
1/* output.h
2 * Definitions for needed output routines
3 * NetWatch system management mode administration console
4 *
5 * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved.
6 * This program is free software; you can redistribute and/or modify it under
7 * the terms found in the file LICENSE in the root of this source tree.
8 *
9 */
10
efea5b4e
JW
11#ifndef __OUTPUT_H
12#define __OUTPUT_H
13
14extern void (*output)(const char *s);
15extern void (*outputf)(const char *s, ...);
16
db9fad13
JAW
17#if DEBUG80
18#define DBG(x) outb(0x80, x)
19#else
20#define DBG(x)
21#endif
22
efea5b4e 23#endif
This page took 0.026518 seconds and 4 git commands to generate.