mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-22 12:55:30 +00:00
Fixed bug in examples/quickstart/demo.sv
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
07d124084c
commit
2fef25f93d
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ module demo (
|
|||
reg [5:0] counter = 0;
|
||||
|
||||
always @(posedge clk) begin
|
||||
if (counter == 50)
|
||||
if (counter == 15)
|
||||
counter <= 0;
|
||||
else
|
||||
counter <= counter + 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue