3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00

Fixed bug in examples/quickstart/demo.sv

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2018-07-26 14:19:04 +02:00
parent 07d124084c
commit 2fef25f93d

View file

@ -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;