Files

11 lines
170 B
Verilog
Raw Permalink Normal View History

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