input_int.sv 93 Bytes
Newer Older
1 2 3 4 5 6
module Example(
    input int inp,
    output int out
);
    assign out = inp * 2;
endmodule