Skip to content

Commit

Permalink
Update delta_counter.sv
Browse files Browse the repository at this point in the history
Make the linter happy
  • Loading branch information
FrancescoConti authored Aug 29, 2024
1 parent 0823a77 commit 5e445eb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/delta_counter.sv
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,11 @@ module delta_counter #(
begin
if(rst_ni) begin
overflow_q <= 1'b0;
end
else begin
end else begin
overflow_q <= overflow_d;
end
end

always_comb begin
overflow_d = overflow_q;
if (clear_i || load_i) begin
Expand Down

0 comments on commit 5e445eb

Please sign in to comment.