11 lines
126 B
Verilog
Executable File
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
|