From: uz Date: Tue, 23 Mar 2010 19:40:48 +0000 (+0000) Subject: Fixed the size of the RAM segment for the CBM610. The routine that does X-Git-Tag: V2.13.3~786 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8e26fef1053bd3e7970c3d6fd6f7891e5d88edb7;p=cc65 Fixed the size of the RAM segment for the CBM610. The routine that does cross-bank calls is located at $FECB and the stack grows downwards from there. git-svn-id: svn://svn.cc65.org/cc65/trunk@4637 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ld65/cfg/cbm610.cfg b/src/ld65/cfg/cbm610.cfg index 7df52e845..177e7ccbe 100644 --- a/src/ld65/cfg/cbm610.cfg +++ b/src/ld65/cfg/cbm610.cfg @@ -7,8 +7,8 @@ MEMORY { STARTUP: file = %O, start = $00FE, size = $0102, fill = yes; PAGE2: file = %O, start = $0200, size = $0100, fill = yes; PAGE3: file = %O, start = $0300, size = $0100, fill = yes; - RAM: file = %O, start = $0400, size = $FAAE - __STACKSIZE__; -} + RAM: file = %O, start = $0400, size = $FECB - __STACKSIZE__; +} SEGMENTS { EXEHDR: load = HEADER, type = rw; STARTUP: load = STARTUP, type = rw;