rudimentary console
[3sys] / sys1 / kern / src / con.h
index 9eb776a..5beb167 100644 (file)
@@ -1,8 +1,13 @@
 #ifndef CON_H_
 #define CON_H_
 
+#include "vga.h"
+
 void con_init(void);
 
+void con_reset(void);
+#define con_color(fg, bg)      vga_setcolor(fg, bg)
+
 void con_putchar(int c);
 
 #endif /* CON_H_ */