yosys/tests/sim/simple_assign.v

9 lines
98 B
Verilog

module simple_assign (
input wire in,
output wire out
);
assign out = in;
endmodule