]> git.sur5r.net Git - cc65/blobdiff - cfg/atarixl-overlay.cfg
rename LOWDATA segment to LOWBSS
[cc65] / cfg / atarixl-overlay.cfg
index 3437238b63c7b128a6ca59890c98d4ffc0fc1d79..b38dff7315303203f98d058dc9490616271baa90 100644 (file)
@@ -30,11 +30,11 @@ MEMORY {
     MAINHDR:       file = %O,               start = $0000,                  size = $0004;
     RAM:           file = %O, define = yes, start = %S +
                                                     __OVERLAYSIZE__ +
-                                                    __LOWDATA_SIZE__,       size = $D000 -
+                                                    __LOWBSS_SIZE__,        size = $D000 -
                                                                                    __STACKSIZE__ -
                                                                                    %S -
                                                                                    __OVERLAYSIZE__ -
-                                                                                   __LOWDATA_SIZE__;
+                                                                                   __LOWBSS_SIZE__;
 
 # defines entry point into program
     TRAILER:       file = %O,               start = $0000, size = $0006;
@@ -68,7 +68,7 @@ SEGMENTS {
     SYSCHKTRL:   load = SYSCHKTRL,                     type = ro,                optional = yes;
 
     SRPREPHDR:   load = SRPREPHDR,                     type = ro;
-    LOWDATA:     load = SRPREPCHNK,                    type = bss, define = yes;  # shared btw. SRPREP and RAM
+    LOWBSS:      load = SRPREPCHNK,                    type = bss, define = yes;  # shared btw. SRPREPCHNK and RAM, not zero initialized
     SRPREP:      load = SRPREPCHNK,                    type = rw,  define = yes;
     SHADOW_RAM:  load = SRPREPCHNK, run = HIDDEN_RAM,  type = rw,  define = yes, optional = yes;
     SHADOW_RAM2: load = SRPREPCHNK, run = HIDDEN_RAM2, type = rw,  define = yes, optional = yes;