From: Clifford Wolf Date: Thu, 26 Jul 2018 12:19:04 +0000 (+0200) Subject: Fixed bug in examples/quickstart/demo.sv X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2fef25f93dd1cb5137a08e71f507e3eee8100fb1;p=SymbiYosys.git Fixed bug in examples/quickstart/demo.sv Signed-off-by: Clifford Wolf --- diff --git a/docs/examples/quickstart/demo.sv b/docs/examples/quickstart/demo.sv index 0184df4..e5e742f 100644 --- a/docs/examples/quickstart/demo.sv +++ b/docs/examples/quickstart/demo.sv @@ -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;