mirror of https://github.com/YosysHQ/yosys.git
9 lines
117 B
Verilog
9 lines
117 B
Verilog
|
module tb;
|
||
|
reg clk = 0;
|
||
|
|
||
|
top uut (.clk(clk));
|
||
|
|
||
|
always #1 clk <= ~clk;
|
||
|
initial #20 $finish;
|
||
|
endmodule
|