From 79eeaead982a033682d1d8a4162618330f226955 Mon Sep 17 00:00:00 2001 From: Zane Kaminski Date: Thu, 3 Oct 2024 12:06:24 -0400 Subject: [PATCH] Fix RAM.v to compile --- cpld/RAM.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpld/RAM.v b/cpld/RAM.v index 6d35702..46b7e36 100644 --- a/cpld/RAM.v +++ b/cpld/RAM.v @@ -12,7 +12,7 @@ module RAM( input RefReqIn, input RefUrgIn, /* DRAM and NOR flash interface */ output [11:0] RA, output nRAS, output reg nCAS, - output nLWE, output nUWE, output reg nOE, output nROMOE, output nROMWE); + output nLWE, output nUWE, output nOE, output nROMOE, output nROMWE); /* RAM control state */ reg [2:0] RS;