input_reg_tb.v 170 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
module top;
    reg inp;
    wire out;
    Example e(inp, out);
    initial
        repeat(5) begin
            #1 inp = 0;
            #1 inp = 1;
        end
endmodule