From 4786caf496bd8e6989abee74017aa098df860c41 Mon Sep 17 00:00:00 2001 From: uz Date: Sat, 13 Nov 2010 10:20:28 +0000 Subject: [PATCH] For modules, the ZP memory area must be written to the output file. This is required by the logic in the linker. git-svn-id: svn://svn.cc65.org/cc65/trunk@4854 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ld65/cfg/module.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ld65/cfg/module.cfg b/src/ld65/cfg/module.cfg index 7d30d0e37..edc87fb17 100644 --- a/src/ld65/cfg/module.cfg +++ b/src/ld65/cfg/module.cfg @@ -1,5 +1,5 @@ MEMORY { - ZP: file = "", start = $0000, size = $0100, type = rw, define = yes; + ZP: file = %O, start = $0000, size = $0100, type = rw, define = yes; COMBINED: file = %O, start = $0000, size = $FFFF; } SEGMENTS { -- 2.39.5