From 93922bb2e9cdbe2083981f401be6d991513f37d0 Mon Sep 17 00:00:00 2001 From: felsabbagh3 Date: Sun, 5 Apr 2020 01:23:33 -0700 Subject: [PATCH] Removed reset on Data/Tag structures --- rtl/VX_cache/VX_tag_data_structure.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtl/VX_cache/VX_tag_data_structure.v b/rtl/VX_cache/VX_tag_data_structure.v index 7ceffcc0..1cf9b7a9 100644 --- a/rtl/VX_cache/VX_tag_data_structure.v +++ b/rtl/VX_cache/VX_tag_data_structure.v @@ -88,9 +88,9 @@ module VX_tag_data_structure if (reset) begin for (l = 0; l < `BANK_LINE_COUNT; l=l+1) begin valid[l] <= 0; - tag [l] <= 0; + // tag [l] <= 0; dirty[l] <= 0; - data [l] <= 0; + // data [l] <= 0; end end else if (!stall_bank_pipe) begin if (going_to_write) begin