1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef _VGA_H #define _VGA_H /* * Basic palette. */ struct palette { unsigned char red; unsigned char green; unsigned char blue; }; extern const struct palette default_vga_palette[0x100]; extern const unsigned char vga_font_8x16[256][16]; #endif /* _VGA_H */