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

Fix quickstart demo to work with verific

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2019-06-18 10:30:04 +02:00
parent 1402969a96
commit 59f4f29fdc

View file

@ -1,8 +1,8 @@
module demo (
input clk,
output [5:0] counter
output reg [5:0] counter
);
reg [5:0] counter = 0;
initial counter = 0;
always @(posedge clk) begin
if (counter == 15)