]> git.sur5r.net Git - cc65/blobdiff - cfg/c64.cfg
Changed run location of INIT segment.
[cc65] / cfg / c64.cfg
index 8fe1c0c6f6a57b3a46ac7e162c6b08c0ea7557f8..2a105c7f1cd9a35a1b5dd74b9469b22029865725 100644 (file)
@@ -8,24 +8,25 @@ SYMBOLS {
     __HIMEM__:     type = weak, value = $D000;
 }
 MEMORY {
-    ZP:       file = "", define = yes, start = $0002,           size = $001A;
-    LOADADDR: file = %O,               start = %S - 2,          size = $0002;
-    HEADER:   file = %O, define = yes, start = %S,              size = $000D;
-    RAM:      file = %O, define = yes, start = __HEADER_LAST__, size = __HIMEM__ - __STACKSIZE__ - __HEADER_LAST__;
-    MOVE:     file = %O,               start = __ZPSAVE_LOAD__, size = __HIMEM__ - __INIT_RUN__;
+    ZP:       file = "", define = yes, start = $0002,            size = $001A;
+    LOADADDR: file = %O,               start = %S - 2,           size = $0002;
+    HEADER:   file = %O, define = yes, start = %S,               size = $000D;
+    MAIN:     file = %O, define = yes, start = __HEADER_LAST__,  size = __HIMEM__ - __STACKSIZE__ - __HEADER_LAST__;
+    MOVE:     file = %O,               start = __INITBSS_LOAD__, size = __HIMEM__ - __BSS_RUN__;
+    INIT:     file = "",               start = __BSS_RUN__,      size = __HIMEM__ - __BSS_RUN__;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,              type = zp;
-    LOADADDR: load = LOADADDR,        type = ro;
-    EXEHDR:   load = HEADER,          type = ro;
-    STARTUP:  load = RAM,             type = ro;
-    LOWCODE:  load = RAM,             type = ro,                optional = yes;
-    CODE:     load = RAM,             type = ro;
-    RODATA:   load = RAM,             type = ro;
-    DATA:     load = RAM,             type = rw;
-    ZPSAVE:   load = RAM,             type = bss, define = yes;
-    BSS:      load = RAM,             type = bss, define = yes;
-    INIT:     load = MOVE, run = RAM, type = ro,  define = yes;
+    ZEROPAGE: load = ZP,               type = zp;
+    LOADADDR: load = LOADADDR,         type = ro;
+    EXEHDR:   load = HEADER,           type = ro;
+    STARTUP:  load = MAIN,             type = ro;
+    LOWCODE:  load = MAIN,             type = ro,                optional = yes;
+    CODE:     load = MAIN,             type = ro;
+    RODATA:   load = MAIN,             type = ro;
+    DATA:     load = MAIN,             type = rw;
+    INITBSS:  load = MAIN,             type = bss, define = yes;
+    BSS:      load = MAIN,             type = bss, define = yes;
+    INIT:     load = MOVE, run = INIT, type = ro,  define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,