From: cuz Date: Sun, 23 Jun 2002 09:42:00 +0000 (+0000) Subject: Make the jump table segment writeable X-Git-Tag: V2.12.0~2297 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=75f57eb1df5f9659eebba375961ad9760193140b;p=cc65 Make the jump table segment writeable git-svn-id: svn://svn.cc65.org/cc65/trunk@1327 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- 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;