Skip to content

Commit

Permalink
hw: Fix wrong FF
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti authored and colluca committed Jul 23, 2024
1 parent 1390fd5 commit 7bf05c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/snitch_ipu/src/snitch_int_ss.sv
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ module snitch_int_ss import riscv_instr::*; import snitch_ipu_pkg::*; import sni
);

for (genvar i = 0; i < 2; i++) begin : gen_multi_cycle_buffer
`FFL(imd_val_q[i], imd_val_q[i], imd_val_we[i], '0, clk_i, rst_i)
`FFLAR(imd_val_q[i], imd_val_q[i], imd_val_we[i], '0, clk_i, rst_i)
end

// ---------------
Expand Down

0 comments on commit 7bf05c5

Please sign in to comment.