Clean up font handling

git-svn-id: svn://coreboot.org/openbios/openbios-devel@342 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Blue Swirl
2009-01-02 13:32:15 +00:00
parent b2692171f9
commit 2137312f95
13 changed files with 54 additions and 22 deletions

View File

@@ -0,0 +1,18 @@
/* Font definitions */
#ifndef OPENBIOS_FONTDATA_H
#define OPENBIOS_FONTDATA_H
#define FONTDATAMAX_8X8 2048
#define FONT_WIDTH_8X8 8
#define FONT_HEIGHT_8X8 8
extern const unsigned char fontdata_8x8[FONTDATAMAX_8X8];
#define FONTDATAMAX_8X16 4096
#define FONT_WIDTH_8X16 8
#define FONT_HEIGHT_8X16 16
extern const unsigned char fontdata_8x16[FONTDATAMAX_8X16];
#endif /* OPENBIOS_FONTDATA_H */