1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-16 09:29:32 +00:00

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.
This commit is contained in:
Stephan Mühlstrasser 2015-01-05 20:37:23 +01:00
parent 8fa5fc6108
commit 073b4c264a

View 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