Skip to content

Commit

Permalink
Fix blocking assignment in FF
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed May 5, 2023
1 parent 8df9c5a commit 763c9af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clic_target.sv
Original file line number Diff line number Diff line change
Expand Up @@ -237,14 +237,14 @@ module clic_target #(
irq_id_q <= '0;
irq_max_q <= '0;
irq_mode_q <= '0;
irq_kill_req_q = 1'b0;
irq_kill_req_q <= 1'b0;
irq_state_q <= IDLE;
end else begin
irq_valid_q <= irq_valid_d;
irq_id_q <= irq_id_d;
irq_max_q <= irq_max_d;
irq_mode_q <= irq_mode_d;
irq_kill_req_q = irq_kill_req_d;
irq_kill_req_q <= irq_kill_req_d;
irq_state_q <= irq_state_d;
end
end
Expand Down

0 comments on commit 763c9af

Please sign in to comment.