polio is getting bigger

This commit is contained in:
2025-10-06 22:52:28 +02:00
parent a1275671b3
commit aaefcc864d
3 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ fat12boot.bin: fat12boot.elf
stdlib.o: CFLAGS := $(filter-out -flto, $(CFLAGS)) stdlib.o: CFLAGS := $(filter-out -flto, $(CFLAGS))
polmon.elf: LDFLAGS += -T flat1000.ld polmon.elf: LDFLAGS += -T init.ld
polmon.elf: polmon.o stdlib.o polmon.elf: polmon.o stdlib.o
polio.elf: LDFLAGS += -T flat0600.ld -mprotected-mode polio.elf: LDFLAGS += -T flat0600.ld -mprotected-mode

View File

@@ -1,5 +1,5 @@
SECTIONS { SECTIONS {
. = 0x1000; . = 0x1200;
.text : { .text : {
KEEP(*(.init)) KEEP(*(.init))

View File

@@ -7,7 +7,7 @@
#define kFatAddr ((void*)0x1a00) #define kFatAddr ((void*)0x1a00)
#define kRootDirAddr ((void*)0x1c00) #define kRootDirAddr ((void*)0x1c00)
#define kPolmonAddr ((void*)0x1000) #define kPolmonAddr ((void*)0x1200)
#define kInt80Vector ((uint16_t*)(0x80 * 4)) #define kInt80Vector ((uint16_t*)(0x80 * 4))
#define kParallelDataPort 0x3bc #define kParallelDataPort 0x3bc
#define kParallelStatusPort 0x3bd #define kParallelStatusPort 0x3bd