OBUF_F_4.v
332 Bytes
// $Header: /root/leakn64/depot/rf/hw/flif/xilinx/OBUF_F_4.v,v 1.1 2003/08/20 23:46:53 berndt Exp $
/*
FUNCTION : OUTPUT BUFFER
*/
`timescale 100 ps / 10 ps
module OBUF_F_4 (O, I);
output O;
input I;
tri0 GTS = glbl.GTS;
bufif0 B1 (O, I, GTS);
specify
(I *> O) = (1, 1);
endspecify
endmodule