From d91508c2ec8285f96cccfb67648b8562f399e76c Mon Sep 17 00:00:00 2001
From: Joshua Wise <joshua@rebirth.joshuawise.com>
Date: Thu, 15 Jan 2009 02:44:48 -0500
Subject: [PATCH] DCache: Be more verbose about fills.

---
 DCache.v | 1 +
 1 file changed, 1 insertion(+)

diff --git a/DCache.v b/DCache.v
index edfcde1..ab68448 100644
--- a/DCache.v
+++ b/DCache.v
@@ -80,6 +80,7 @@ module DCache(
 			cache_fill_pos <= 0;
 		else if (rd_req && !cache_hit) begin
 			if (bus_ready && bus_ack) begin	/* Started the fill, and we have data. */
+				$display("DCACHE: FILL: rd addr %08x; bus addr %08x; bus data %08x, bus_req %d, bus_ack %d", addr, bus_addr, bus_rdata, bus_req, bus_ack);
 				cache_data[idx][cache_fill_pos] <= bus_rdata;
 				cache_fill_pos <= cache_fill_pos + 1;
 				if (cache_fill_pos == 15) begin	/* Done? */
-- 
2.43.0