Skip to content

Commit b5e2490

Browse files
authored
Apply suggestion from @lildude
1 parent e057d39 commit b5e2490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/Verilog/button_debounce.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ module button_debounce
6161
always @ (posedge clk or negedge reset_n)
6262
state <= (!reset_n) ? WAIT : next_state;
6363

64-
always@(posedge clk or negedge reset_n) begin
64+
always @ (posedge clk or negedge reset_n) begin
6565
if (!reset_n) begin
6666
debounce <= 0;
6767
count <= 0;

0 commit comments

Comments
 (0)