Add constants for fast path resume copying
[coreboot.git] / src / pc80 / vga / vga.h
1 #ifndef _VGA_H
2 #define _VGA_H
3
4 /*
5  * Basic palette.
6  */
7 struct palette {
8         unsigned char red;
9         unsigned char green;
10         unsigned char blue;
11 };
12
13 extern const struct palette default_vga_palette[0x100];
14
15 extern const unsigned char vga_font_8x16[256][16];
16
17 #endif /* _VGA_H */