1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-01 08:29:37 +00:00

Changed the size of available RAM so that the last used address is $7FFF.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4630 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2010-03-20 18:08:27 +00:00
parent 38b0dbde84
commit 15f95d7623

View File

@ -1,7 +1,7 @@
MEMORY {
ZP: start = $0055, size = $001A, type = rw, define = yes;
HEADER: start = $03FF, size = $000E, file = %O;
RAM: start = $040D, size = $7BF1, file = %O;
RAM: start = $040D, size = $7BF3, file = %O;
}
SEGMENTS {
EXEHDR: load = HEADER, type = ro;