aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-04-13 06:14:21 -0400
committerB. Watson <urchlay@slackware.uk>2026-04-13 06:14:21 -0400
commit46453088eec3947300b376cb1960a0c67b2252f0 (patch)
treeff02b28752b7db8be63bed68dc7325730017f34a /src
parentad5646c813f1068342592a63646de7ba5dae7c3c (diff)
downloadfujinet-chat-46453088eec3947300b376cb1960a0c67b2252f0.tar.gz
Removed unused bits of src/atari.cfg (avoid ld65 warning about ONCE).
Diffstat (limited to 'src')
-rw-r--r--src/atari.cfg21
1 files changed, 4 insertions, 17 deletions
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__;
-}