Files
sv2v/test/core/edge_tb.v
2022-02-16 12:01:58 +01:00

10 lines
141 B
Verilog

module top;
reg clk;
initial begin
clk = 0;
repeat (10)
#5 clk = ~clk;
end
mod m(clk);
endmodule