2026-05-29 10:19:13 +02:00

11 lines
126 B
Verilog
Executable File

module OBUFT (
input I, T,
output O
);
PAD U1 ( .IN_PORT(I), .SELECT(T), .INOUT_PORT(O), .OUT_PORT() );
endmodule