selfmade-os

annotate 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
rev   line source
meillo@1 1
meillo@1 2 void cls(void);
meillo@1 3 void setcolor(int fg, int bg);
meillo@1 4 void setpos(int line, int col);
meillo@1 5 void relpos(int move);
meillo@1 6
meillo@1 7 int putchar(int c);
meillo@1 8 int puts(const char* s);
meillo@1 9 int printf(const char* fmt, ...);