From: cuz Date: Fri, 14 Sep 2001 16:48:41 +0000 (+0000) Subject: Adjust sizes, define the video RAM X-Git-Tag: V2.12.0~2659 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2760fbd5dc43e1f55c1c352775ed2aabea7275c4;p=cc65 Adjust sizes, define the video RAM git-svn-id: svn://svn.cc65.org/cc65/trunk@922 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ld65/cfg/cbm510.cfg b/src/ld65/cfg/cbm510.cfg index 586412d53..499502776 100644 --- a/src/ld65/cfg/cbm510.cfg +++ b/src/ld65/cfg/cbm510.cfg @@ -1,6 +1,7 @@ MEMORY { ZP: start = $02, size = $1A, type = rw; - RAM: start = $0001, size = $FFF0, file = %O; + RAM: start = $0001, size = $F3FF, file = %O; + VIDRAM: start = $F400, size = $0400, define = yes, file = ""; } SEGMENTS { CODE: load = RAM, type = wprot; @@ -20,5 +21,5 @@ FEATURES { count = __DESTRUCTOR_COUNT__; } SYMBOLS { - __STACKSIZE__ = $800; # 2K stack + __STACKSIZE__ = $781; # ~2K stack }