OBUF_S_2.v
333 Bytes
// $Header: /root/leakn64/depot/rf/hw/debug/xilinx/OBUF_S_2.v,v 1.1 2003/04/01 21:47:36 berndt Exp $
/*
FUNCTION : OUTPUT BUFFER
*/
`timescale 100 ps / 10 ps
module OBUF_S_2 (O, I);
output O;
input I;
tri0 GTS = glbl.GTS;
bufif0 B1 (O, I, GTS);
specify
(I *> O) = (1, 1);
endspecify
endmodule