input_int_tb.v 209 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
module top;
    reg signed [31:0] inp;
    wire signed [31:0] out;
    Example e(inp, out);
    initial begin
        #1 inp = 1;
        #1 inp = 5;
        #1 inp = 10;
        #1 inp = 7;
    end
endmodule