sv2v/test/core/input_reg_tb.v

11 lines
170 B
Verilog
Raw Normal View History

2023-11-05 17:02:51 +01:00
module top;
reg inp;
wire out;
Example e(inp, out);
initial
repeat(5) begin
#1 inp = 0;
#1 inp = 1;
end
endmodule