mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-12 16:28:17 +00:00
Fix quickstart demo to work with verific
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
1402969a96
commit
59f4f29fdc
|
@ -1,8 +1,8 @@
|
||||||
module demo (
|
module demo (
|
||||||
input clk,
|
input clk,
|
||||||
output [5:0] counter
|
output reg [5:0] counter
|
||||||
);
|
);
|
||||||
reg [5:0] counter = 0;
|
initial counter = 0;
|
||||||
|
|
||||||
always @(posedge clk) begin
|
always @(posedge clk) begin
|
||||||
if (counter == 15)
|
if (counter == 15)
|
||||||
|
|
Loading…
Reference in a new issue