support for .zeropage segment in GEOS

git-svn-id: svn://svn.cc65.org/cc65/trunk@1834 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst
2002-12-23 22:14:14 +00:00
parent 31e4d80ac8
commit dc207514dd
13 changed files with 33 additions and 173 deletions

View File

@@ -1,6 +1,7 @@
MEMORY {
ZP: start = $58, size = $28, type = rw, define = yes;
HEADER: start = $204, size = 508, file = %O;
RAM: start = $400, size = $5C00, file = %O;
RAM: start = $400, size = $5C00, define = yes, file = %O;
}
SEGMENTS {
HEADER: load = HEADER, type = ro;
@@ -10,6 +11,7 @@ SEGMENTS {
RODATA: load = RAM, type = ro;
DATA: load = RAM, type = rw;
BSS: load = RAM, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
}
FEATURES {
CONDES: segment = RODATA,
@@ -22,5 +24,5 @@ FEATURES {
count = __DESTRUCTOR_COUNT__;
}
SYMBOLS {
__STACKSIZE__ = $800; # 2K stack
__STACKSIZE__ = $400; # 1K stack
}