selfmade-os
diff io.h @ 1:42ba76f77035
the kernel with output and mem alloc
author | meillo@marmaro.de |
---|---|
date | Sun, 01 Nov 2009 23:50:51 +0100 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/io.h Sun Nov 01 23:50:51 2009 +0100 1.3 @@ -0,0 +1,9 @@ 1.4 + 1.5 +void cls(void); 1.6 +void setcolor(int fg, int bg); 1.7 +void setpos(int line, int col); 1.8 +void relpos(int move); 1.9 + 1.10 +int putchar(int c); 1.11 +int puts(const char* s); 1.12 +int printf(const char* fmt, ...);