mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 01:24:10 +00:00
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
|