-Changed most of the header guard strings to be a little more verbose
[newos.git] / include / kernel / arch / dbg_console.h
blobd1e8a9aba482044706311123229292820e31ad64
1 /*
2 ** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
4 */
5 #ifndef _NEWOS_KERNEL_ARCH_DBG_CONSOLE
6 #define _NEWOS_KERNEL_ARCH_DBG_CONSOLE
8 #include <boot/stage2.h>
10 char arch_dbg_con_read(void);
11 char arch_dbg_con_putch(char c);
12 void arch_dbg_con_puts(const char *s);
13 int arch_dbg_con_init(kernel_args *ka);
15 #endif