From b3167d763b022c937ec262e9df5238ba60c312c7 Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Tue, 30 Mar 2021 22:08:26 -0700 Subject: [PATCH] minor update --- hw/rtl/VX_lsu_unit.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/rtl/VX_lsu_unit.v b/hw/rtl/VX_lsu_unit.v index 8e67c36a..f2a97efb 100644 --- a/hw/rtl/VX_lsu_unit.v +++ b/hw/rtl/VX_lsu_unit.v @@ -123,7 +123,7 @@ module VX_lsu_unit #( always @(posedge clk) begin if (reset || req_sent_all) begin req_sent_mask <= 0; - end else if (!req_sent_all) begin + end else begin req_sent_mask <= req_sent_mask | dcache_req_fire; end end