]> git.sur5r.net Git - cc65/commitdiff
Reduced default stack size to a reasonable value.
authorOliver Schmidt <ol.sc@web.de>
Sat, 10 Feb 2018 10:29:50 +0000 (11:29 +0100)
committerOliver Schmidt <ol.sc@web.de>
Sat, 10 Feb 2018 10:30:10 +0000 (11:30 +0100)
The unexpanded Creativision has only $206 bytes of RAM available to cc65 programs. So it's a bad idea(tm) to reserve $180 bytes for the software stack. $40 bytes seems a much better default (aka guess).

cfg/creativision.cfg

index 289984df09782978604d9797b255951882bf53d5..2eb9ac4278e82ab6e72fa430420551d4e77708fe 100644 (file)
@@ -1,5 +1,5 @@
 SYMBOLS {
-    __STACKSIZE__: type = weak, value = $0180;
+    __STACKSIZE__: type = weak, value = $0040;
 }
 MEMORY {
     ZP:  file = "", define = yes, start = $0020, size = $00E0;