Root/lm32/logic/sakc/sim/unisims/BUFG.v

1// $Header: /devl/xcs/repo/env/Databases/CAEInterfaces/verunilibs/data/unisims/BUFG.v,v 1.5.158.1 2007/03/09 18:13:02 patrickp Exp $
2///////////////////////////////////////////////////////////////////////////////
3// Copyright (c) 1995/2004 Xilinx, Inc.
4// All Right Reserved.
5///////////////////////////////////////////////////////////////////////////////
6// ____ ____
7// / /\/ /
8// /___/ \ / Vendor : Xilinx
9// \ \ \/ Version : 8.1i (I.13)
10// \ \ Description : Xilinx Functional Simulation Library Component
11// / / Global Clock Buffer
12// /___/ /\ Filename : BUFG.v
13// \ \ / \ Timestamp : Thu Mar 25 16:42:14 PST 2004
14// \___\/\___\
15//
16// Revision:
17// 03/23/04 - Initial version.
18// End Revision
19
20`timescale 100 ps / 10 ps
21
22
23module BUFG (O, I);
24
25    output O;
26
27    input I;
28
29    buf B1 (O, I);
30
31
32endmodule
33
34

Archive Download this file

Branches:
master



interactive