From 46453088eec3947300b376cb1960a0c67b2252f0 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 13 Apr 2026 06:14:21 -0400 Subject: Removed unused bits of src/atari.cfg (avoid ld65 warning about ONCE). --- src/atari.cfg | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) (limited to 'src/atari.cfg') diff --git a/src/atari.cfg b/src/atari.cfg index 53fc6ba..ea3e0eb 100644 --- a/src/atari.cfg +++ b/src/atari.cfg @@ -1,3 +1,7 @@ +# This is a hacked-up modified config, DO NOT USE for the config segment. +# The ONCE segment and the CONDES stuff are removed (don't need). +# The STARTUP segment now loads to page 6. + FEATURES { STARTADDRESS: default = $2000; } @@ -28,7 +32,6 @@ SEGMENTS { EXTZP: load = ZP, type = zp, optional = yes; EXEHDR: load = HEADER, type = ro; P6HDR: load = P6HDR, type = ro; - ONCE: load = PAGE6, type = ro, define = yes; # not used by fnchat! STARTUP: load = PAGE6, type = ro, define = yes; MAINHDR: load = MAINHDR, type = ro; LOWBSS: load = MAIN, type = rw, optional = yes; # not zero initialized @@ -40,19 +43,3 @@ SEGMENTS { BSS: load = MAIN, type = bss, define = yes; AUTOSTRT: load = TRAILER, type = ro; } - -FEATURES { - CONDES: type = constructor, - label = __CONSTRUCTOR_TABLE__, - count = __CONSTRUCTOR_COUNT__, - segment = ONCE; - CONDES: type = destructor, - label = __DESTRUCTOR_TABLE__, - count = __DESTRUCTOR_COUNT__, - segment = RODATA; - CONDES: type = interruptor, - label = __INTERRUPTOR_TABLE__, - count = __INTERRUPTOR_COUNT__, - segment = RODATA, - import = __CALLIRQ__; -} -- cgit v1.2.3