sv2v/test/core/input_reg_tb.v

11 lines
170 B
Verilog

module top;
reg inp;
wire out;
Example e(inp, out);
initial
repeat(5) begin
#1 inp = 0;
#1 inp = 1;
end
endmodule