From c24052fae43669b600b18de9beee3362e1e81276 Mon Sep 17 00:00:00 2001 From: cuz Date: Sun, 13 Apr 2003 22:25:29 +0000 Subject: [PATCH] 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 --- src/ld65/cfg/atmos.cfg | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/ld65/cfg/atmos.cfg b/src/ld65/cfg/atmos.cfg index 1959a8b2b..358a8d496 100644 --- a/src/ld65/cfg/atmos.cfg +++ b/src/ld65/cfg/atmos.cfg @@ -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 { - -- 2.39.5