Add the new OPTIONAL attribute to the LOWCODE segment.

git-svn-id: svn://svn.cc65.org/cc65/trunk@2165 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-05-22 22:32:33 +00:00
parent 3b3e1bec17
commit cfb622f738
10 changed files with 12 additions and 12 deletions

View File

@@ -6,10 +6,10 @@ MEMORY {
SEGMENTS {
ZEROPAGE: load = ZP, type = zp, define = yes; # Pseudo-registers
STARTUP: load = RAM, type = ro; # First initiation code
LOWCODE: load = RAM, type = ro; # Legacy from other platforms
LOWCODE: load = RAM, type = ro, optional = yes; # Legacy from other platforms
CODE: load = RAM, type = ro; # Program
RODATA: load = RAM, type = ro; # Literals, constants
DATA: load = RAM, type = rw; # Initialized variables
DATA: load = RAM, type = rw; # Initialized variables
BSS: load = RAM, type = bss, define = yes; # Uninitialized variables
}
FEATURES {