X-Git-Url: http://git.joshuawise.com/firearm.git/blobdiff_plain/2b5c79c05898ff20b0c04cd78bccb2580f6c8331..3c947a993d1b35c3a15978983487617b6b56e423:/DCache.v 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;