From f7c52af40a2d93a67405d61ca5483e81617792d0 Mon Sep 17 00:00:00 2001 From: Christopher Lu Date: Fri, 9 Jan 2009 01:27:12 -0500 Subject: [PATCH] blockram: more fix --- BlockRAM.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BlockRAM.v b/BlockRAM.v index 30f7515..a86ec75 100644 --- a/BlockRAM.v +++ b/BlockRAM.v @@ -12,7 +12,7 @@ module BlockRAM( * 0x00004000. rdata and ready must be driven to zero if the * address is not within the range of this module. */ - wire decode = (bus_addr & ~32'h00003FFF) == 32'h00000000; + wire decode = bus_addr[31:14] == 18'b0; wire [13:0] ramaddr = {bus_addr[13:2], 2'b0}; /* mask off lower two bits * for word alignment */ -- 2.39.2