From 073b4c264aa4bd22deeaed7b97b990bd51fbd8b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20M=C3=BChlstrasser?= Date: Mon, 5 Jan 2015 20:37:23 +0100 Subject: [PATCH] Set default RAM size to 32 kB. 8 kB RAM are very small for "interesting" programs compiled with cc65. Therefore set the default RAM size to 32 kB. --- cfg/c1p.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cfg/c1p.cfg b/cfg/c1p.cfg index 62adcd820..633298270 100644 --- a/cfg/c1p.cfg +++ b/cfg/c1p.cfg @@ -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