]> git.sur5r.net Git - cc65/blobdiff - src/ld65/cfg/geos.cfg
Made stacksize user-adjustable on the cmdline.
[cc65] / src / ld65 / cfg / geos.cfg
index 473ba2634394e29f16313459c5bd13605d2ea7d2..05673385dabbc9cf05d986d004446e6ff568e0b2 100644 (file)
@@ -1,21 +1,23 @@
 MEMORY {
-    ZP: start = $58, size = $28, type = rw, define = yes;
-    HEADER: start = $204, size = 508, file = %O;
-    RAM: start = $400, size = $5C00, define = yes, file = %O;
+    ZP:     start = $0058, size = $0028, type = rw, define = yes;
+    HEADER: start = $0204, size = $01FC, file = %O;
+    RAM:    start = $0400, size = $5C00, define = yes, file = %O;
 }
 SEGMENTS {
-    HEADER: load = HEADER, type = ro;
-    STARTUP: load = RAM, type = wprot;
-    LOWCODE: load = RAM, type = wprot, optional = yes;
-    CODE: load = RAM, type = ro;
-    RODATA: load = RAM, type = ro;
-    DATA: load = RAM, type = rw;
-    BSS: load = RAM, type = bss, define = yes;
-    ZEROPAGE: load = ZP, type = zp;
-    EXTZP: load = ZP, type = zp;
+    HEADER:   load = HEADER, type = ro;
+    STARTUP:  load = RAM,    type = ro;
+    LOWCODE:  load = RAM,    type = ro,               optional = yes;
+    INIT:     load = RAM,    type = ro, define = yes, optional = yes;
+    CODE:     load = RAM,    type = ro;
+    RODATA:   load = RAM,    type = ro;
+    DATA:     load = RAM,    type = rw;
+    BSS:      load = RAM,    type = bss, define = yes;
+    HEAP:     load = RAM,    type = bss, optional = yes; # must sit just below stack
+    ZEROPAGE: load = ZP,     type = zp;
+    EXTZP:    load = ZP,     type = zp;
 }
 FEATURES {
-    CONDES: segment = RODATA,
+    CONDES: segment = INIT,
            type = constructor,
            label = __CONSTRUCTOR_TABLE__,
            count = __CONSTRUCTOR_COUNT__;
@@ -23,7 +25,11 @@ FEATURES {
            type = destructor,
            label = __DESTRUCTOR_TABLE__,
            count = __DESTRUCTOR_COUNT__;
+    CONDES: type = interruptor,
+           segment = RODATA,
+           label = __INTERRUPTOR_TABLE__,
+           count = __INTERRUPTOR_COUNT__;
 }
 SYMBOLS {
-    __STACKSIZE__ = $400;      # 1K stack
+    __STACKSIZE__: value = $0400, weak = yes; # 1k stack
 }