From 41fab61253493516efb48f722f409dcbd317be3f Mon Sep 17 00:00:00 2001 From: Stefan Date: Sat, 16 Dec 2017 00:41:00 +0100 Subject: [PATCH 1/2] Fixed memory config #551 --- cfg/c16.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg/c16.cfg b/cfg/c16.cfg index b67c66b96..9f54730af 100644 --- a/cfg/c16.cfg +++ b/cfg/c16.cfg @@ -7,7 +7,7 @@ MEMORY { ZP: file = "", define = yes, start = $0002, size = $001A; LOADADDR: file = %O, start = $0FFF, size = $0002; HEADER: file = %O, start = $1001, size = $000C; - MAIN: file = %O, start = $100D, size = $6FF3 - __STACKSIZE__; + MAIN: file = %O, start = $100D, size = $3FF3 - __STACKSIZE__; } SEGMENTS { ZEROPAGE: load = ZP, type = zp; From b4fe03e49ff27b787ce287d3333935c3cab7dab7 Mon Sep 17 00:00:00 2001 From: Stefan Date: Sat, 16 Dec 2017 02:36:31 +0100 Subject: [PATCH 2/2] Update c16.cfg --- cfg/c16.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg/c16.cfg b/cfg/c16.cfg index 9f54730af..8016c6d0f 100644 --- a/cfg/c16.cfg +++ b/cfg/c16.cfg @@ -7,7 +7,7 @@ MEMORY { ZP: file = "", define = yes, start = $0002, size = $001A; LOADADDR: file = %O, start = $0FFF, size = $0002; HEADER: file = %O, start = $1001, size = $000C; - MAIN: file = %O, start = $100D, size = $3FF3 - __STACKSIZE__; + MAIN: file = %O, start = $100D, size = $2FF3 - __STACKSIZE__; } SEGMENTS { ZEROPAGE: load = ZP, type = zp;