From ee671d4ef86346e8d10cd0474aad998c16aa0383 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Mon, 2 May 2011 10:46:14 -0700 Subject: Implement the console callback interface. At least enough for GETC and PUTS. --- uart.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'uart.h') diff --git a/uart.h b/uart.h index 48cceef..bb47b0c 100644 --- a/uart.h +++ b/uart.h @@ -57,8 +57,10 @@ your own risk. extern int uart_charav(int port); extern int uart_getchar(int port); +extern void uart_putchar_raw(int port, char c); extern void uart_putchar(int port, char c); extern void uart_puts(int port, const char *s); +extern void uart_init_line(int port, int baud); extern void uart_init(void); #endif /* __ASSEMBLER__ */ -- cgit v1.1