From 14ef33904f52e326e981c57530d75fc75e34a298 Mon Sep 17 00:00:00 2001 From: Zane Kaminski Date: Tue, 8 Oct 2024 21:13:29 -0400 Subject: [PATCH] Remove BACTr from ROM /WE equation --- cpld/RAM.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpld/RAM.v b/cpld/RAM.v index 795b117..cb0d0d6 100644 --- a/cpld/RAM.v +++ b/cpld/RAM.v @@ -52,7 +52,7 @@ module RAM( /* ROM /OE and /WE control */ assign nROMOE = !(!nAS && ROMCS && nWE); - assign nROMWE = !(!nAS && ROMCS4X && !nWE && BACTr); + assign nROMWE = !(!nAS && ROMCS4X && !nWE); /* RAM address mux (and ROM address on RA8) */ // RA11 doesn't do anything so both should be identical.