OBUFDS_LVDSEXT_33.v 402 Bytes
// $Header: /root/leakn64/depot/rf/hw/flif/xilinx/OBUFDS_LVDSEXT_33.v,v 1.1 2003/08/20 23:46:51 berndt Exp $

/*

FUNCTION	: OUTPUT BUFFER

*/

`timescale  100 ps / 10 ps


module OBUFDS_LVDSEXT_33 (O, OB, I);

    output O, OB;

    input  I;

    tri0 GTS = glbl.GTS;

	bufif0 B1 (O, I, GTS);
	notif0 N1 (OB, I, GTS);

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

endmodule