From 8e7f77e49b7226305bcb7c0de134a387d5fc25bd Mon Sep 17 00:00:00 2001 From: ikari Date: Mon, 27 Feb 2012 22:14:19 +0100 Subject: [PATCH] FPGA/cx4: map ROM above bank 3F/BF --- verilog/sd2snes_cx4/address.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verilog/sd2snes_cx4/address.v b/verilog/sd2snes_cx4/address.v index bbd74ac..b3f2f50 100644 --- a/verilog/sd2snes_cx4/address.v +++ b/verilog/sd2snes_cx4/address.v @@ -44,7 +44,7 @@ wire [23:0] SRAM_SNES_ADDR; - MMIO @ 6000-7fff */ -assign IS_ROM = SNES_ADDR[15] & ~SNES_CS; +assign IS_ROM = ~SNES_CS; assign SRAM_SNES_ADDR = ({2'b00, SNES_ADDR[22:16], SNES_ADDR[14:0]} & ROM_MASK);