- No more HEAP segment
- RAM reduced by __STACKSIZE__ - Unified formatting git-svn-id: svn://svn.cc65.org/cc65/trunk@4633 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -16,7 +16,6 @@ MEMORY {
|
||||
BANKROM7: start = $8000, size = $4000, fill = yes, fillval = $FF, file = %O;
|
||||
ROM: start = $c000, size = $4000, fill = yes, fillval = $FF, file = %O;
|
||||
}
|
||||
|
||||
SEGMENTS {
|
||||
LOWCODE: load = ROM, type = ro, optional = yes;
|
||||
INIT: load = ROM, type = ro, define = yes, optional = yes;
|
||||
@@ -29,8 +28,7 @@ SEGMENTS {
|
||||
BANK6: load = BANKROM6, type = ro;
|
||||
BANK7: load = BANKROM7, type = ro;
|
||||
ZEROPAGE: load = RAM, type = bss, define = yes;
|
||||
DATA: load = RAM, type = bss, offset = $0200, define = yes;
|
||||
DATA: load = RAM, type = bss, define = yes, offset = $0200;
|
||||
BSS: load = RAM, type = bss, define = yes;
|
||||
HEAP: load = RAM, type = bss, optional = yes; # must sit just below stack
|
||||
VECTOR: load = ROM, type = ro, offset = $3FFA;
|
||||
VECTOR: load = ROM, type = ro, offset = $3FFA;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user