3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-23 10:29:44 +00:00
yosys/tests/sim/undriven_replay.v
2026-02-20 11:00:59 -08:00

7 lines
109 B
Verilog

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