kern

view src/vid.h @ 65:e49fdda97607

changed the makefile to only pass "emulation" (-m32 -melf_i386) only when not running on a i386 system. Also made that work for freebsd too
author John Tsiombikas <nuclear@mutantstargoat.com>
date Wed, 05 Oct 2011 02:34:58 +0300
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_ */