Skip to content

Commit

Permalink
hw: Fix repeated load-stores in FPSS on WAW stall (#92)
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Scheffler <paulsc@iis.ee.ethz.ch>
  • Loading branch information
colluca and paulsc96 authored Feb 14, 2024
1 parent bc63f73 commit 4a1e067
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/snitch_cluster/src/snitch_fp_ss.sv
Original file line number Diff line number Diff line change
Expand Up @@ -2580,7 +2580,7 @@ module snitch_fp_ss import snitch_pkg::*; #(
// ----------------------
// Load/Store Unit
// ----------------------
assign lsu_qvalid = acc_req_valid_q & (&op_ready) & (is_load | is_store);
assign lsu_qvalid = acc_req_valid_q & (&op_ready) & (is_load | is_store) & dst_ready;

snitch_lsu #(
.AddrWidth (AddrWidth),
Expand Down

0 comments on commit 4a1e067

Please sign in to comment.