From 050fadb7ac49069d63cda3bbef9bc35dcfe53d27 Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Mon, 26 Jul 2021 23:04:25 -0700 Subject: [PATCH] minor update --- hw/rtl/VX_lsu_unit.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/rtl/VX_lsu_unit.v b/hw/rtl/VX_lsu_unit.v index be54b340..540cb03f 100644 --- a/hw/rtl/VX_lsu_unit.v +++ b/hw/rtl/VX_lsu_unit.v @@ -313,7 +313,8 @@ module VX_lsu_unit #( end begin if (mbuf_push) begin pending_reqs[mbuf_waddr] <= {req_wid, req_pc, $time, 1'b1}; - end else if (mbuf_pop) begin + end + if (mbuf_pop) begin pending_reqs[mbuf_raddr] <= '0; end end