From ab482e0d6c80e74be9b974b9b2e896ebf9a21e1c Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 11 Jun 2014 14:00:21 -0400 Subject: 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 --- src/font.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/font.c') 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, -- cgit v1.1