add aditional modules for start/stop

and for up down counter
This commit is contained in:
Imants Pulkstenis
2020-04-13 00:25:43 +03:00
parent 9a6c90c0b2
commit 45652812e3
7 changed files with 149 additions and 32 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ module debounce_switch(
input i_switch,
output o_switch);
parameter c_debounce_limit=1_000_000;// 10ms at 100MHz
parameter c_debounce_limit=1_000_000;// 10ms@100MHz
reg r_state=1'b0;
reg [19:0] r_count = 0;