mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 13:17:41 -04:00
perf: fix too strict restriction on FLU write-back (#1230)
This commit is contained in:
parent
8e39a17056
commit
3bab6ed815
1 changed files with 1 additions and 1 deletions
|
@ -388,7 +388,7 @@ module issue_read_operands import ariane_pkg::*; #(
|
|||
end
|
||||
// after a multiplication was issued we can only issue another multiplication
|
||||
// otherwise we will get contentions on the fixed latency bus
|
||||
if (mult_valid_q && issue_instr_i.fu != MULT) begin
|
||||
if (mult_valid_q && issue_instr_i.fu inside {ALU, CTRL_FLOW, CSR}) begin
|
||||
issue_ack_o = 1'b0;
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue