/* * con.h * * Basic VGA text console */ #ifndef _CON_H #define _CON_H void con_init(void); void con_print(char*); #endif