Skip to content

Commit

Permalink
hw: Fix wrong FF
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Jul 19, 2024
1 parent 39fd927 commit 9b832e8
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 9b832e8

Please sign in to comment.