OBUFDS_LVPECL_33.v
401 Bytes
// $Header: /root/leakn64/depot/rf/hw/debug/xilinx/OBUFDS_LVPECL_33.v,v 1.1 2003/04/01 21:47:34 berndt Exp $
/*
FUNCTION : OUTPUT BUFFER
*/
`timescale 100 ps / 10 ps
module OBUFDS_LVPECL_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