1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 04:30:10 +00:00

Define symbols for the RAM area

git-svn-id: svn://svn.cc65.org/cc65/trunk@610 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-03-08 14:49:31 +00:00
parent 22b55ae7fe
commit 1bcad88c3a

View File

@ -1,6 +1,6 @@
MEMORY {
ZP: start = $02, size = $1A, type = rw;
RAM: start = $7FF, size = $c801, file = %O;
RAM: start = $7FF, size = $c801, define = yes, file = %O;
}
SEGMENTS {
CODE: load = RAM, type = wprot;
@ -20,4 +20,4 @@ FEATURES {
count = __DESTRUCTOR_COUNT__;
}