Add an additional file = "" to memory areas that contain only bss or zp type

segments and aren't written to the output file. Before that, the "not going to
output file" was implicit because of the bss type of the segments contained.
The new attribute makes this explicit.


git-svn-id: svn://svn.cc65.org/cc65/trunk@4853 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2010-11-12 19:59:02 +00:00
parent de14990fbb
commit c797be4767
29 changed files with 70 additions and 70 deletions

View File

@@ -4,7 +4,7 @@ SYMBOLS {
__STACKSIZE__: type = weak, value = $0800; # 2k stack
}
MEMORY {
ZP: define = yes, start = $0080, size = $001A;
ZP: file = "", define = yes, start = $0080, size = $001A;
HEADER: file = "", start = $0000, size = $0004;
RAM: file = %O, define = yes, start = $2000, size = $9F00 - __STACKSIZE__;
MOVE: file = %O, define = yes, start = $0000, size = $FFFF;