Skip to content

Commit

Permalink
Fix FF in clic controller.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvan Tortorella committed May 9, 2024
1 parent 86baaf5 commit e42703f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/cva6_clic_controller.sv
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ module cva6_clic_controller #(
// Acknowledge kill if no irq is inflight and irq is not accepted this cycle
assign clic_kill_ack_o = clic_kill_req_i & ~irq_inflight_q & ~clic_irq_req_o;

`FFARNC(mult_result_q, irq_inflight_d, clear_i, '0, clk_i, rst_ni)
`FFARNC(irq_inflight_q, irq_inflight_d, clear_i, '0, clk_i, rst_ni)
endmodule

0 comments on commit e42703f

Please sign in to comment.