Skip to content

Commit

Permalink
Prevents warning about unused free_next
Browse files Browse the repository at this point in the history
  • Loading branch information
jotego committed Jan 5, 2023
1 parent c08a3d0 commit 65c927a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hdl/jt51_timers.v
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ always @(posedge clk) begin
if( rst ) begin
free_cnt <= 4'd0;
end else if( cen&&zero ) begin
free_cnt <= free_cnt+4'd1;
free_cnt <= free_next;
end
end

Expand Down

0 comments on commit 65c927a

Please sign in to comment.