mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +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:
parent
8fa5fc6108
commit
073b4c264a
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user