mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-04-21 12:27:27 +03:00
Fixing some examples, adding scripts for compiling xilinx libs with ghdl
This commit is contained in:
33
Examples/sram_gpio/logic/sim/unisims/BUFG.v
Normal file
33
Examples/sram_gpio/logic/sim/unisims/BUFG.v
Normal file
@@ -0,0 +1,33 @@
|
||||
// $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
|
||||
|
||||
Reference in New Issue
Block a user