We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e057d39 commit b5e2490Copy full SHA for b5e2490
samples/Verilog/button_debounce.v
@@ -61,7 +61,7 @@ module button_debounce
61
always @ (posedge clk or negedge reset_n)
62
state <= (!reset_n) ? WAIT : next_state;
63
64
- always@(posedge clk or negedge reset_n) begin
+ always @ (posedge clk or negedge reset_n) begin
65
if (!reset_n) begin
66
debounce <= 0;
67
count <= 0;
0 commit comments