mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
Better define 'EXTBSS' to allow developer to memset() set it to zero on startup.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5698 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
f3cc7a4a32
commit
45bf954fbe
@ -33,7 +33,7 @@ MEMORY {
|
||||
SEGMENTS {
|
||||
ZEROPAGE: type = zp, load = ZP;
|
||||
EXTZP: type = zp, load = ZP;
|
||||
EXTBSS: type = bss, load = EXT optional = yes;
|
||||
EXTBSS: type = bss, load = EXT, define = yes, optional = yes;
|
||||
FILEINFO: type = ro, load = CVT, offset = $002;
|
||||
RECORDS: type = ro, load = CVT, offset = $100, optional = yes;
|
||||
DIRENTRY: type = ro, load = CVT, offset = $180;
|
||||
|
Loading…
Reference in New Issue
Block a user