aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-04-29 21:26:52 -0400
committerB. Watson <urchlay@slackware.uk>2025-04-29 21:26:52 -0400
commit65f8f447f10b6669ab5f6a924a57e59af110766d (patch)
treed3ef4232f2559ddf1da1cf91efceef3ece82774e /Makefile
parentca6c113f44f2b5b9d0c6827c8cec2b0a454c95ea (diff)
downloadatari8-self-relocator-65f8f447f10b6669ab5f6a924a57e59af110766d.tar.gz
mkreloc.xex: remove "system check" segment, org at $4000 to avoid "need mem.sav" message from DOS.HEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b2c2eed..ba65944 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,7 @@ reloc.xex: reloc.s mkreloc
$(CL65) -t none -o reloc.xex reloc.s
mkreloc.xex: mkreloc.c
- $(CL65) -t atari -o mkreloc.xex -Wl -D__SYSTEM_CHECK__=1 mkreloc.c
+ $(CL65) -t atari -o mkreloc.xex --start-addr 0x4000 -Wl -D__SYSTEM_CHECK__=1 mkreloc.c
mkreloc: mkreloc.c
$(CC) $(CFLAGS) -Wall -o mkreloc mkreloc.c