From: Joshua Wise Date: Tue, 17 Mar 2009 01:23:34 +0000 (-0400) Subject: DCache: Clear out a rw_wait reference in a $display that caused Verilator to throw... X-Git-Url: http://git.joshuawise.com/firearm.git/commitdiff_plain/e46e5a75567f46a2990a945aebb5337705e30a7c?ds=sidebyside DCache: Clear out a rw_wait reference in a $display that caused Verilator to throw a UNOPTFLAT. Now we have no more UNOPTFLAT! Yay! --- diff --git a/DCache.v b/DCache.v index aec6ae6..6ec26a7 100644 --- a/DCache.v +++ b/DCache.v @@ -68,7 +68,7 @@ module DCache( bus_addr = {addr[31:6], cache_fill_pos[3:0], 2'b00 /* reads are 32-bits */}; bus_rd = 1; end else if (wr_req && bus_ack) begin - $display("DCACHE: WRITE REQUEST: Addr %08x, data %08x, wait %d", addr, wr_data, rw_wait); + $display("DCACHE: WRITE REQUEST: Addr %08x, data %08x", addr, wr_data); bus_addr = addr; bus_wr = 1; bus_wdata = wr_data;