bufg.v

来自「DDR2源代码 DDR2源代码 DDR2源代码」· Verilog 代码 · 共 34 行

V
34
字号
// $Header: /devl/xcs/repo/env/Databases/CAEInterfaces/verunilibs/data/unisims/BUFG.v,v 1.6 2007/05/23 21:43:33 patrickp Exp $///////////////////////////////////////////////////////////////////////////////// Copyright (c) 1995/2004 Xilinx, Inc.// All Right Reserved./////////////////////////////////////////////////////////////////////////////////   ____  ____//  /   /\/   /// /___/  \  /    Vendor : Xilinx// \   \   \/     Version : 10.1//  \   \         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.//    05/23/07 - Changed timescale to 1 ps / 1 ps.`timescale  1 ps / 1 psmodule BUFG (O, I);    output O;    input  I;	buf B1 (O, I);endmodule

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?