/* * con.h * * Basic VGA text console. Implements printf() and puts(). */ #ifndef _CON_H #define _CON_H void con_init(void); int puts(char *s); int printf(char*, ...); #endif