X-Git-Url: http://git.joshuawise.com/firearm.git/blobdiff_plain/960947a70a85ad40fe2569500806552d11f1e02d..666ceb038eeeb0125af3797e6cf76d0954b9431f:/BlockRAM.v?ds=sidebyside diff --git a/BlockRAM.v b/BlockRAM.v index 1731c30..30f7515 100644 --- a/BlockRAM.v +++ b/BlockRAM.v @@ -13,11 +13,9 @@ module BlockRAM( * address is not within the range of this module. */ wire decode = (bus_addr & ~32'h00003FFF) == 32'h00000000; - /* verilator lint_off WIDTH */ - wire [13:0] ramaddr = bus_addr & 32'h3FFC; /* mask off lower two bits + wire [13:0] ramaddr = {bus_addr[13:2], 2'b0}; /* mask off lower two bits * for word alignment */ - /* verilator lint_on WIDTH */ - + reg [31:0] data [(16384 / 4 - 1):0]; reg [31:0] temprdata = 0;