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:
parent
1402969a96
commit
59f4f29fdc
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue