]> git.sur5r.net Git - cc65/commitdiff
Set default RAM size to 32 kB.
authorStephan Mühlstrasser <stephan.muehlstrasser@web.de>
Mon, 5 Jan 2015 19:37:23 +0000 (20:37 +0100)
committerStephan Mühlstrasser <stephan.muehlstrasser@web.de>
Mon, 5 Jan 2015 19:37:23 +0000 (20:37 +0100)
8 kB RAM are very small for "interesting" programs
compiled with cc65. Therefore set the default
RAM size to 32 kB.

cfg/c1p.cfg

index 62adcd82039b1e92c30793f74284159b6bb6532b..633298270675384eb28035516fc68f2098d391ff 100644 (file)
@@ -3,8 +3,8 @@ FEATURES {
 }
 
 SYMBOLS {
-    __STACKSIZE__: type = weak, value = $0400; # 1k stack
-    __HIMEM__:     type = weak, value = $2000; # Presumed RAM end
+    __STACKSIZE__: type = weak, value = $0400; # 1 kB stack
+    __HIMEM__:     type = weak, value = $8000; # 32 kB RAM
 }
 MEMORY {
     # for size of ZP see runtime/zeropage.s and c1p/extzp.s