Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/serial_deglitch.sv
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module serial_deglitch #(
if (en_i) begin
if (d_i == 1'b1 && count_q != SIZE[SIZE-1:0]) begin
count_q <= count_q + 1;
end else if (d_i == 1'b0 && count_q != SIZE[SIZE-1:0]) begin
end else if (d_i == 1'b0 && count_q != 0) begin
count_q <= count_q - 1;
end
end
Expand Down