CTF/0ctf/EzLogic/behavioral models/IBUF.v

6 lines
79 B
Verilog

module IBUF(
input wire I,
output wire O
);
assign O = I;
endmodule