console cursor positioning
[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_setcolor(fg, bg)    vga_setcolor(fg, bg)
10
11 void con_setcur(int x, int y);
12 void con_getcur(int *x, int *y);
13 void con_pushcur(void);
14 void con_popcur(void);
15
16 void con_putchar(int c);
17
18 #endif  /* CON_H_ */