From 94df0e8ef421aa20eb4ba19bd8f4ef0376a879e8 Mon Sep 17 00:00:00 2001 From: Christian Groessler Date: Thu, 16 Jan 2014 23:45:21 +0100 Subject: [PATCH] made more segments optional so that the config file can be used for assembler programs, too --- cfg/atari-cart.cfg | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cfg/atari-cart.cfg b/cfg/atari-cart.cfg index cf6472656..04934309b 100644 --- a/cfg/atari-cart.cfg +++ b/cfg/atari-cart.cfg @@ -11,17 +11,17 @@ SYMBOLS { MEMORY { ZP: file = "", define = yes, start = $0082, size = $007E; RAM: file = "", define = yes, start = %S, size = $2000; - ROM: file = %O, define = yes, start = $A000, size = $1FFA, fill = yes, fillval = $ff; + ROM: file = %O, define = yes, start = $A000, size = $1FFA, fill = yes, fillval = $FF; CARTID: file = %O, start = $BFFA, size = $0006; } SEGMENTS { - STARTUP: load = ROM, type = ro, define = yes; + STARTUP: load = ROM, type = ro, define = yes, optional = yes; LOWCODE: load = ROM, type = ro, define = yes, optional = yes; INIT: load = ROM, type = ro, optional = yes; CODE: load = ROM, type = ro, define = yes; - RODATA: load = ROM, type = ro; - DATA: load = ROM, run = RAM, type = rw, define = yes; - BSS: load = RAM, type = bss, define = yes; + RODATA: load = ROM, type = ro; optional = yes; + DATA: load = ROM, run = RAM, type = rw, define = yes; optional = yes; + BSS: load = RAM, type = bss, define = yes; optional = yes; CARTHDR: load = CARTID, type = ro; ZEROPAGE: load = ZP, type = zp; EXTZP: load = ZP, type = zp, optional = yes; -- 2.39.5