]> git.sur5r.net Git - cc65/commitdiff
Fixed none.cfg
authorbauen1 <j2468h@gmail.com>
Thu, 4 Jan 2018 21:01:44 +0000 (22:01 +0100)
committerbauen1 <j2468h@gmail.com>
Thu, 4 Jan 2018 21:01:44 +0000 (22:01 +0100)
cfg/none.cfg

index f82e9707f288cc988256bbdd99013c7f08e5b2c5..26f5379cd416d73976c8c60a96a46e9b47cb53b2 100644 (file)
@@ -1,9 +1,14 @@
+FEATURES {
+    STARTADDRESS: default = $1000;
+}
 SYMBOLS {
-    __STACKSIZE__: type = weak, value = $0800; # 2k stack
+    __STACKSIZE__:  type = weak, value = $0800; # 2k stack
+    __STACKSTART__: type = weak, value = $8000;
+    __ZPSTART__:    type = weak, value = $0080;
 }
 MEMORY {
-    ZP:   file = "", define = yes, start = $0000, size = $0001F;
-    MAIN: file = %O, define = yes, start = %S,    size = $10000 - __STACKSIZE__;
+    ZP:   file = "", define = yes, start = __ZPSTART__, size = $001F;
+    MAIN: file = %O, define = yes, start = %S,          size = __STACKSTART__ - __STACKSIZE__;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,   type = zp;