aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2021-02-10 19:40:54 +0100
committerHelge Deller <deller@gmx.de>2021-09-24 11:10:17 +0200
commit4ee3c1c6edba7a4175cb3c71e153a6d96634478e (patch)
tree43207470cc97acc47170fb99f01dea689408c3d3
parent65f28adc361676330e339c8085f7b46979b6807a (diff)
downloadseabios-hppa-4ee3c1c6edba7a4175cb3c71e153a6d96634478e.zip
seabios-hppa-4ee3c1c6edba7a4175cb3c71e153a6d96634478e.tar.gz
seabios-hppa-4ee3c1c6edba7a4175cb3c71e153a6d96634478e.tar.bz2
font.c: Disable built-in x86 font on parisc
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--src/font.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/font.c b/src/font.c
index 67e5d46..24cd67f 100644
--- a/src/font.c
+++ b/src/font.c
@@ -7,6 +7,7 @@
* found at ftp://ftp.simtel.net/pub/simtelnet/msdos/screen/fntcol16.zip
* This font is public domain
*/
+#if CONFIG_X86
u8 vgafont8[128*8] VARFSEGFIXED(0xfa6e) = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x7e, 0x81, 0xa5, 0x81, 0xbd, 0x99, 0x81, 0x7e,
@@ -137,3 +138,4 @@ u8 vgafont8[128*8] VARFSEGFIXED(0xfa6e) = {
0x76, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x10, 0x38, 0x6c, 0xc6, 0xc6, 0xfe, 0x00,
};
+#endif