yosys/tests/sim/undriven_replay.v

8 lines
109 B
Verilog

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