sv2v/test/core/input_reg.sv

7 lines
90 B
Systemverilog

module Example(
input reg inp,
output reg out
);
assign out = ~inp;
endmodule