X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=3sys;a=blobdiff_plain;f=sys1%2Fkern%2Fsrc%2Fcon.h;fp=sys1%2Fkern%2Fsrc%2Fcon.h;h=5beb1678e3643a31a8a76d2b71aff8c4135fbf3e;hp=9eb776aaa9ae3811ae1d6522645c3a738514a447;hb=f28bc61c31cc95d9a0496a6f40a2fcdfd79f782d;hpb=3029144412cf13580e11bc1dffca8b14e05014d0 diff --git a/sys1/kern/src/con.h b/sys1/kern/src/con.h index 9eb776a..5beb167 100644 --- a/sys1/kern/src/con.h +++ b/sys1/kern/src/con.h @@ -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_ */