From fe3c5acd5b35032ad5df875b5f723456f2a2e8c5 Mon Sep 17 00:00:00 2001 From: Zane Kaminski Date: Wed, 24 Jun 2020 14:10:00 -0400 Subject: [PATCH] Fixed wrong text section start address --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7f51eca..cc27b61 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ obj/rdisk.o: rdisk.c obj $(CC) -c -O1 $< -o $@ obj/rdisk_reloc.o: obj obj/rdisk.o - $(LD) -Ttext=40851DB0 -o $@ obj/rdisk.o + $(LD) -Ttext=40851D70 -o $@ obj/rdisk.o obj/rdisk.s: obj obj/rdisk.o $(OBJDUMP) -d obj/rdisk.o > $@