OBUFT_LVCMOS33_S_2.v 412 Bytes
// $Header: /root/leakn64/depot/rf/hw/debug/xilinx/OBUFT_LVCMOS33_S_2.v,v 1.1 2003/04/01 21:47:35 berndt Exp $

/*

FUNCTION	: TRI-STATE OUTPUT BUFFER

*/

`timescale  100 ps / 10 ps


module OBUFT_LVCMOS33_S_2 (O, I, T);

    output O;

    input  I, T;

    tri0 GTS = glbl.GTS;

    or O1 (ts, GTS, T);
    bufif0 T1 (O, I, ts);

    specify
	(I *> O) = (1, 1);
	(T *> O) = (1, 1);
    endspecify

endmodule