1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-01 03:30:20 +00:00

I just don't like 'file = "" '.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5725 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2012-06-16 21:12:56 +00:00
parent b7b7de55d0
commit 7691da610b
6 changed files with 12 additions and 12 deletions

View File

@ -13,7 +13,7 @@ SYMBOLS {
__MOVE_LAST__ - __MOVE_START__; __MOVE_LAST__ - __MOVE_START__;
} }
MEMORY { MEMORY {
ZP: file = "", define = yes, start = $0080, size = $001A; ZP: define = yes, start = $0080, size = $001A;
HEADER: file = %O, start = $0000, size = $0004; HEADER: file = %O, start = $0000, size = $0004;
RAM: file = %O, define = yes, start = %S, size = $BF00 - __STACKSIZE__ - %S; RAM: file = %O, define = yes, start = %S, size = $BF00 - __STACKSIZE__ - %S;
MOVE: file = %O, define = yes, start = $0000, size = $FFFF; MOVE: file = %O, define = yes, start = $0000, size = $FFFF;

View File

@ -9,10 +9,10 @@ SYMBOLS {
__MOVE_LAST__ - __MOVE_START__; __MOVE_LAST__ - __MOVE_START__;
} }
MEMORY { MEMORY {
ZP: file = "", define = yes, start = $0080, size = $001A; ZP: define = yes, start = $0080, size = $001A;
RAM: file = %O, define = yes, start = $2000, size = $9F00 - __STACKSIZE__; RAM: file = %O, define = yes, start = $2000, size = $9F00 - __STACKSIZE__;
MOVE: file = %O, define = yes, start = $0000, size = $FFFF; MOVE: file = %O, define = yes, start = $0000, size = $FFFF;
LC: define = yes, start = __LCADDR__, size = __LCSIZE__; LC: define = yes, start = __LCADDR__, size = __LCSIZE__;
} }
SEGMENTS { SEGMENTS {
ZEROPAGE: load = ZP, type = zp; ZEROPAGE: load = ZP, type = zp;

View File

@ -13,7 +13,7 @@ SYMBOLS {
__MOVE_LAST__ - __MOVE_START__; __MOVE_LAST__ - __MOVE_START__;
} }
MEMORY { MEMORY {
ZP: file = "", define = yes, start = $0080, size = $001A; ZP: define = yes, start = $0080, size = $001A;
HEADER: file = %O, start = $0000, size = $0004; HEADER: file = %O, start = $0000, size = $0004;
RAM: file = %O, define = yes, start = %S, size = $9600 - __STACKSIZE__ - %S; RAM: file = %O, define = yes, start = %S, size = $9600 - __STACKSIZE__ - %S;
MOVE: file = %O, define = yes, start = $0000, size = $FFFF; MOVE: file = %O, define = yes, start = $0000, size = $FFFF;

View File

@ -13,7 +13,7 @@ SYMBOLS {
__MOVE_LAST__ - __MOVE_START__; __MOVE_LAST__ - __MOVE_START__;
} }
MEMORY { MEMORY {
ZP: file = "", define = yes, start = $0080, size = $001A; ZP: define = yes, start = $0080, size = $001A;
HEADER: file = %O, start = $0000, size = $0004; HEADER: file = %O, start = $0000, size = $0004;
RAM: file = %O, define = yes, start = %S, size = $BF00 - __STACKSIZE__ - %S; RAM: file = %O, define = yes, start = %S, size = $BF00 - __STACKSIZE__ - %S;
MOVE: file = %O, define = yes, start = $0000, size = $FFFF; MOVE: file = %O, define = yes, start = $0000, size = $FFFF;

View File

@ -9,10 +9,10 @@ SYMBOLS {
__MOVE_LAST__ - __MOVE_START__; __MOVE_LAST__ - __MOVE_START__;
} }
MEMORY { MEMORY {
ZP: file = "", define = yes, start = $0080, size = $001A; ZP: define = yes, start = $0080, size = $001A;
RAM: file = %O, define = yes, start = $2000, size = $9F00 - __STACKSIZE__; RAM: file = %O, define = yes, start = $2000, size = $9F00 - __STACKSIZE__;
MOVE: file = %O, define = yes, start = $0000, size = $FFFF; MOVE: file = %O, define = yes, start = $0000, size = $FFFF;
LC: define = yes, start = __LCADDR__, size = __LCSIZE__; LC: define = yes, start = __LCADDR__, size = __LCSIZE__;
} }
SEGMENTS { SEGMENTS {
ZEROPAGE: load = ZP, type = zp; ZEROPAGE: load = ZP, type = zp;

View File

@ -13,7 +13,7 @@ SYMBOLS {
__MOVE_LAST__ - __MOVE_START__; __MOVE_LAST__ - __MOVE_START__;
} }
MEMORY { MEMORY {
ZP: file = "", define = yes, start = $0080, size = $001A; ZP: define = yes, start = $0080, size = $001A;
HEADER: file = %O, start = $0000, size = $0004; HEADER: file = %O, start = $0000, size = $0004;
RAM: file = %O, define = yes, start = %S, size = $9600 - __STACKSIZE__ - %S; RAM: file = %O, define = yes, start = %S, size = $9600 - __STACKSIZE__ - %S;
MOVE: file = %O, define = yes, start = $0000, size = $FFFF; MOVE: file = %O, define = yes, start = $0000, size = $FFFF;