From 75f57eb1df5f9659eebba375961ad9760193140b Mon Sep 17 00:00:00 2001 From: cuz Date: Sun, 23 Jun 2002 09:42:00 +0000 Subject: [PATCH] Make the jump table segment writeable git-svn-id: svn://svn.cc65.org/cc65/trunk@1327 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 7783f995a..f2a72ae9b 100644 --- a/src/ld65/cfg/module.cfg +++ b/src/ld65/cfg/module.cfg @@ -3,7 +3,7 @@ MEMORY { COMBINED: start = $0000, size = $FFFF, file = %O; } SEGMENTS { - JUMPTABLE: load = COMBINED, type = wprot; + JUMPTABLE: load = COMBINED, type = rw; CODE: load = COMBINED, type = wprot; RODATA: load = COMBINED, type = wprot; DATA: load = COMBINED, type = rw, define = yes;