Export start and size of the ZP memory area

git-svn-id: svn://svn.cc65.org/cc65/trunk@1258 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-04-23 20:11:36 +00:00
parent 6bdf186607
commit 2a921c4498
11 changed files with 12 additions and 10 deletions

View File

@@ -1,4 +1,5 @@
MEMORY {
ZP: start = $00, size = $1F, type = rw, define = yes;
RAM: start = %S, size = $10000, file = %O;
}
SEGMENTS {
@@ -6,6 +7,7 @@ SEGMENTS {
RODATA: load = RAM, type = rw;
DATA: load = RAM, type = rw;
BSS: load = RAM, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
}
FEATURES {
CONDES: segment = RODATA,