input_reg.sv 90 Bytes
Newer Older
1 2 3 4 5 6
module Example(
    input reg inp,
    output reg out
);
    assign out = ~inp;
endmodule