1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 17:30:50 +00:00

Assume text mode, no need to free memory for graphics

git-svn-id: svn://svn.cc65.org/cc65/trunk@2049 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-04-13 22:25:29 +00:00
parent 84be05bd55
commit c24052fae4

View File

@ -1,8 +1,10 @@
MEMORY {
ZP: start = $50, size = $1A, type = rw, define = yes;
RAM: start = $0600, size = $7000, define = yes, file = %O;
ZP: start = $E2, size = $1A, type = rw, define = yes;
TAPEHDR: start = $000, size= 14, type = ro, file = %O;
RAM: start = $0600, size = $9200, define = yes, file = %O;
}
SEGMENTS {
TAPEHDR: load = TAPEHDR, type = ro;
STARTUP: load = RAM, type = wprot;
LOWCODE: load = RAM, type = wprot;
CODE: load = RAM, type = wprot;
@ -27,4 +29,3 @@ SYMBOLS {