rudimentary console
[3sys] / sys1 / kern / src / con.h
1 #ifndef CON_H_
2 #define CON_H_
3
4 #include "vga.h"
5
6 void con_init(void);
7
8 void con_reset(void);
9 #define con_color(fg, bg)       vga_setcolor(fg, bg)
10
11 void con_putchar(int c);
12
13 #endif  /* CON_H_ */