]> git.sur5r.net Git - cc65/blobdiff - cfg/plus4.cfg
Fixed _textcolor definition.
[cc65] / cfg / plus4.cfg
index 610a7c23c58b0894921cb5f0bb8f6996166274a6..b7199e00885cbc5ca0e200424d86cc716ac1afb1 100644 (file)
@@ -1,26 +1,30 @@
+FEATURES {
+    STARTADDRESS: default = $1001;
+}
 SYMBOLS {
     __LOADADDR__:  type = import;
     __EXEHDR__:    type = import;
     __STACKSIZE__: type = weak, value = $0800; # 2k stack
+    __HIMEM__:     type = weak, value = $FD00;
 }
 MEMORY {
-    ZP:       file = "", define = yes, start = $0002, size = $001A;
-    LOADADDR: file = %O,               start = $0FFF, size = $0002;
-    HEADER:   file = %O,               start = $1001, size = $000C;
-    MAIN:     file = %O, define = yes, start = $100D, size = $ECF3 - __STACKSIZE__;
+    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__ - __MAIN_START__ - __STACKSIZE__;
 }
 SEGMENTS {
     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;
-    ONCE:     load = MAIN,     type = ro,                optional = yes;
+    LOWCODE:  load = MAIN,     type = ro,  optional = yes;
     CODE:     load = MAIN,     type = ro;
+    ONCE:     load = MAIN,     type = ro,  optional = yes;
     RODATA:   load = MAIN,     type = ro;
     DATA:     load = MAIN,     type = rw;
     INIT:     load = MAIN,     type = bss;
-    BSS:      load = MAIN,     type = bss, define = yes;
+    BSS:      load = MAIN,     type = bss, define   = yes;
 }
 FEATURES {
     CONDES: type    = constructor,