OBUFDS.v 420 Bytes
// $Header: /root/leakn64/depot/rf/hw/debug/xilinx/OBUFDS.v,v 1.1 2003/04/01 21:47:34 berndt Exp $

/*

FUNCTION	: OUTPUT BUFFER

*/

`timescale  100 ps / 10 ps


module OBUFDS (O, OB, I);

    parameter IOSTANDARD = "LVDS_25";

    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