]> git.sur5r.net Git - cc65/blobdiff - cfg/lynx-bll.cfg
Merge pull request #289 from OzHawk/patch-1
[cc65] / cfg / lynx-bll.cfg
index 21967752f5f5c36db362d26415489734fbcff833..a1687b423f90f30789c175a114169ab9abefc2f5 100644 (file)
@@ -7,26 +7,26 @@ SYMBOLS {
 MEMORY {
     ZP:     file = "", define = yes, start = $0000, size = $0100;
     HEADER: file = %O,               start = $0000, size = $000a;
-    RAM:    file = %O, define = yes, start = $0400, size = $BC38 - __STACKSIZE__;
+    MAIN:   file = %O, define = yes, start = $0400, size = $BC38 - __STACKSIZE__;
 }
 SEGMENTS {
-    BLLHDR:   load = HEADER, type = ro;
-    STARTUP:  load = RAM,    type = ro,  define = yes;
-    LOWCODE:  load = RAM,    type = ro,  define = yes, optional = yes;
-    INIT:     load = RAM,    type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,    type = ro,  define = yes;
-    RODATA:   load = RAM,    type = ro,  define = yes;
-    DATA:     load = RAM,    type = rw,  define = yes;
-    BSS:      load = RAM,    type = bss, define = yes;
     ZEROPAGE: load = ZP,     type = zp;
     EXTZP:    load = ZP,     type = zp,                optional = yes;
     APPZP:    load = ZP,     type = zp,                optional = yes;
+    BLLHDR:   load = HEADER, type = ro;
+    STARTUP:  load = MAIN,   type = ro,  define = yes;
+    LOWCODE:  load = MAIN,   type = ro,  define = yes, optional = yes;
+    ONCE:     load = MAIN,   type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,   type = ro,  define = yes;
+    RODATA:   load = MAIN,   type = ro,  define = yes;
+    DATA:     load = MAIN,   type = rw,  define = yes;
+    BSS:      load = MAIN,   type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
             label   = __CONSTRUCTOR_TABLE__,
             count   = __CONSTRUCTOR_COUNT__,
-            segment = INIT;
+            segment = ONCE;
     CONDES: type    = destructor,
             label   = __DESTRUCTOR_TABLE__,
             count   = __DESTRUCTOR_COUNT__,