minor update

This commit is contained in:
Blaise Tine 2024-07-27 14:35:52 -07:00
parent f5014e8975
commit 81b17169ab

View file

@ -89,7 +89,9 @@ module VX_cache_data #(
always @(posedge clk) begin
if (reset) begin
dirty_blocks_r <= '0;
for (integer i = 0; i < `CS_LINES_PER_BANK * NUM_WAYS; ++i) begin
dirty_blocks_r[i] <= 0;
end
end else begin
if (fill) begin
dirty_blocks_r[way_addr] <= 0;