diff --git a/tb_snes/snes.cfg b/tb_snes/snes.cfg index d453442..ec641d1 100644 --- a/tb_snes/snes.cfg +++ b/tb_snes/snes.cfg @@ -8,7 +8,7 @@ MEMORY { RAM: start = $7e2000, size = $e000, type = rw, define = yes; STACK: start = $000000, size = $2000, type = rw, define = yes; SRAM: start = $006000, size = $2000, type = rw, define = yes; - HIGHROM: start = $c00000, size = $10000, type = ro, file = %O, fill = yes, define = yes; + MOREROM: start = $400000, size = $10000, type = ro, file = %O, fill = yes, define = yes; } #------------------------------------------------------------------------------ # @@ -16,11 +16,12 @@ MEMORY { SEGMENTS { STARTUP: load = ROMST, type = ro, define = yes; CARTINFO: load = ROMINFO, type = ro, define = yes; - RODATA: load = HIGHROM, type = ro, define = yes; + RODATA: load = ROMST, type = ro, define = yes; DATA: load = ROMST, run = RAM,type = rw, define = yes; BSS: load = RAM, type = bss, define = yes; ZEROPAGE: load = ZP, type = zp; CODE: load = ROMST, type = ro, define = yes; + HIGHROM: load = MOREROM, type = ro, define = yes; } #------------------------------------------------------------------------------ #