aboutsummaryrefslogtreecommitdiff
path: root/src/font.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2014-06-11 14:00:21 -0400
committerKevin O'Connor <kevin@koconnor.net>2014-06-11 16:22:51 -0400
commitab482e0d6c80e74be9b974b9b2e896ebf9a21e1c (patch)
tree1634b8ac60be2b2a26955fbb569b10f93fc0da22 /src/font.c
parent38729bc37417310ad9606617b8e56f258e69ad7d (diff)
downloadseabios-hppa-ab482e0d6c80e74be9b974b9b2e896ebf9a21e1c.zip
seabios-hppa-ab482e0d6c80e74be9b974b9b2e896ebf9a21e1c.tar.gz
seabios-hppa-ab482e0d6c80e74be9b974b9b2e896ebf9a21e1c.tar.bz2
build: Get fixed address variables from 32bit compile pass (not 16bit)
Update the layoutrom.py build script so that fixed address sections can come from the 32bit compiled C code. Update the C code so that all VAR16FIXED variables instead use the new VARFSEGFIXED which is defined in 32bit mode. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/font.c')
-rw-r--r--src/font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/font.c b/src/font.c
index 3f8662f..67e5d46 100644
--- a/src/font.c
+++ b/src/font.c
@@ -7,7 +7,7 @@
* found at ftp://ftp.simtel.net/pub/simtelnet/msdos/screen/fntcol16.zip
* This font is public domain
*/
-u8 vgafont8[128*8] VAR16FIXED(0xfa6e) = {
+u8 vgafont8[128*8] VARFSEGFIXED(0xfa6e) = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x7e, 0x81, 0xa5, 0x81, 0xbd, 0x99, 0x81, 0x7e,
0x7e, 0xff, 0xdb, 0xff, 0xc3, 0xe7, 0xff, 0x7e,