IOBUF_LVCMOS25_S_4.v
483 Bytes
// $Header: /root/leakn64/depot/rf/hw/debug/xilinx/IOBUF_LVCMOS25_S_4.v,v 1.1 2003/04/01 21:47:34 berndt Exp $
/*
FUNCTION : INPUT TRI-STATE OUTPUT BUFFER
*/
`timescale 100 ps / 10 ps
module IOBUF_LVCMOS25_S_4 (O, IO, I, T);
output O;
inout IO;
input I, T;
tri0 GTS = glbl.GTS;
or O1 (ts, GTS, T);
bufif0 T1 (IO, I, ts);
buf B1 (O, IO);
specify
(IO *> O) = (1, 1);
(I *> IO) = (1, 1);
(T *> IO) = (1, 1);
endspecify
endmodule