mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-01-10 21:50:14 +02:00
34 lines
875 B
Coq
34 lines
875 B
Coq
|
// $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 $
|
||
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
// Copyright (c) 1995/2004 Xilinx, Inc.
|
||
|
// All Right Reserved.
|
||
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
// ____ ____
|
||
|
// / /\/ /
|
||
|
// /___/ \ / Vendor : Xilinx
|
||
|
// \ \ \/ Version : 8.1i (I.13)
|
||
|
// \ \ Description : Xilinx Functional Simulation Library Component
|
||
|
// / / Global Clock Buffer
|
||
|
// /___/ /\ Filename : BUFG.v
|
||
|
// \ \ / \ Timestamp : Thu Mar 25 16:42:14 PST 2004
|
||
|
// \___\/\___\
|
||
|
//
|
||
|
// Revision:
|
||
|
// 03/23/04 - Initial version.
|
||
|
// End Revision
|
||
|
|
||
|
`timescale 100 ps / 10 ps
|
||
|
|
||
|
|
||
|
module BUFG (O, I);
|
||
|
|
||
|
output O;
|
||
|
|
||
|
input I;
|
||
|
|
||
|
buf B1 (O, I);
|
||
|
|
||
|
|
||
|
endmodule
|
||
|
|