minor update

This commit is contained in:
Blaise Tine
2021-03-30 22:08:26 -07:00
parent a84a6fe8a9
commit b3167d763b

View File

@@ -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