From 85dc09fd9f115286875b622d59b62016eb814212 Mon Sep 17 00:00:00 2001 From: Christian Groessler Date: Wed, 12 Jun 2013 13:26:26 +0200 Subject: [PATCH] add LOWBUFS segment --- cfg/atarixl.cfg | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/cfg/atarixl.cfg b/cfg/atarixl.cfg index ce7d98280..34b6593a7 100644 --- a/cfg/atarixl.cfg +++ b/cfg/atarixl.cfg @@ -26,7 +26,15 @@ MEMORY { # "main program" load chunk MAINHDR: file = %O, start = $0000, size = $0004; - RAM: file = %O, define = yes, start = %S + __SAVEAREA_SIZE__ + __ZPSAVE_SIZE__, size = $D000 - __STACKSIZE__ - %S - __SAVEAREA_SIZE__ - __ZPSAVE_SIZE__; + RAM: file = %O, define = yes, start = %S + + __SAVEAREA_SIZE__ + + __LOWBUFS_SIZE__ + + __ZPSAVE_SIZE__, size = $D000 - + __STACKSIZE__ - + %S - + __SAVEAREA_SIZE__ - + __LOWBUFS_SIZE__ - + __ZPSAVE_SIZE__; # address of relocated character generator CHARGEN: file = "", define = yes, start = $D800, size = $0400; @@ -46,6 +54,7 @@ SEGMENTS { SRPREPHDR: load = SRPREPHDR, type = ro; SAVEAREA: load = SRPREP, type = bss, define = yes; # shared btw. SRPREP and RAM + LOWBUFS: load = SRPREP, type = bss, define = yes; ZPSAVE: load = SRPREP, type = bss, define = yes; SRPREP: load = SRPREP, type = rw, define = yes; SHADOW_RAM: load = SRPREP, run = RAM_BELOW_ROM, type = rw, define = yes, optional = yes;