1 /*- 2 * Copyright (c) 1998 Robert Nordier 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms are freely 6 * permitted provided that the above copyright notice and this 7 * paragraph and the following disclaimer are duplicated in all 8 * such forms. 9 * 10 * This software is provided "AS IS" and without any express or 11 * implied warranties, including, without limitation, the implied 12 * warranties of merchantability and fitness for a particular 13 * purpose. 14 * 15 * $FreeBSD$ 16 */ 17 18 #ifndef _CONS_H_ 19 #define _CONS_H_ 20 21 #define IO_KEYBOARD 1 22 #define IO_SERIAL 2 23 24 extern uint8_t ioctrl; 25 26 void putc(int c); 27 void xputc(int c); 28 int getchar(void); 29 void putchar(int c); 30 int getc(int fn); 31 int xgetc(int fn); 32 int keyhit(unsigned int secs); 33 void getstr(char *cmdstr, size_t cmdstrsize); 34 35 #endif /* !_CONS_H_ */ 36