Skip to content

Commit

Permalink
hw: Fix repeated load-stores in FPSS on WAW stall
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsc96 authored and colluca committed Feb 14, 2024
1 parent bc63f73 commit e795b49
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 e795b49

Please sign in to comment.