OBUFT_LVDCI_15.v
403 Bytes
// $Header: /root/leakn64/depot/rf/hw/flif/xilinx/OBUFT_LVDCI_15.v,v 1.1 2003/08/20 23:46:52 berndt Exp $
/*
FUNCTION : TRI-STATE OUTPUT BUFFER
*/
`timescale 100 ps / 10 ps
module OBUFT_LVDCI_15 (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