kern

view src/vid.h @ 80:4db99a52863e

fixed the "endianess" of the text messages in the ATA identify info block. this is the first time I've seen wrong byteorder in ascii text, the ATA committee should be commended.
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 06 Dec 2011 13:35:39 +0200
parents ebe5e0e44a9d
children
line source
1 #ifndef VID_H_
2 #define VID_H_
4 #define WIDTH 80
5 #define HEIGHT 25
7 /* the standard CGA color palette */
8 enum {
9 BLACK,
10 BLUE,
11 GREEN,
12 CYAN,
13 RED,
14 MAGENTA,
15 BROWN,
16 LTGRAY,
17 GRAY,
18 LTBLUE,
19 LTGREEN,
20 LTCYAN,
21 LTRED,
22 LTMAGENTA,
23 YELLOW,
24 WHITE
25 };
27 void clear_scr(void);
28 void set_char(char c, int x, int y, int fg, int bg);
29 void set_cursor(int x, int y);
30 void scroll_scr(void);
32 #endif /* VID_H_ */