sv2v/test/core/asgn_sense_lhs_tb.v

11 lines
166 B
Verilog

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