X-Git-Url: http://git.joshuawise.com/firearm.git/blobdiff_plain/30066e0689c34c97bcc69d8fe0e5d8ac53b1296c..81a01a2b3225a62f9f0af74e5b2480c51ddbd1fe:/DCache.v diff --git a/DCache.v b/DCache.v index a3484a7..edfcde1 100644 --- a/DCache.v +++ b/DCache.v @@ -79,7 +79,7 @@ module DCache( if (rd_req && (cache_fill_pos != 0) && ((prev_addr != {addr[31:6], 6'b0}) || cache_hit)) /* If this wasn't from the same line, or we've moved on somehow, reset the fill circuitry. */ cache_fill_pos <= 0; else if (rd_req && !cache_hit) begin - if (bus_ready) begin /* Started the fill, and we have data. */ + if (bus_ready && bus_ack) begin /* Started the fill, and we have data. */ cache_data[idx][cache_fill_pos] <= bus_rdata; cache_fill_pos <= cache_fill_pos + 1; if (cache_fill_pos == 15) begin /* Done? */