mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +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:
parent
50f707dd39
commit
7101c646e3
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user