1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

set RAM start address to %S; add STARTADDRESS

git-svn-id: svn://svn.cc65.org/cc65/trunk@3545 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2005-07-24 20:57:00 +00:00
parent 50f707dd39
commit 7101c646e3

View File

@ -1,7 +1,11 @@
FEATURES {
STARTADDRESS: default = $2E00;
}
MEMORY {
ZP: start = $0082, size = $007E, type = rw, define = yes;
HEADER: start = $0000, size = $0006, file = %O;
RAM: start = $2E00, size = $8E20, file = %O; # $8E20: matches upper bound $BC1F
RAM: start = %S, size = $8E20, file = %O; # $8E20: matches upper bound $BC1F for
# the default start address of $2E00
}
SEGMENTS {
EXEHDR: load = HEADER, type = ro;