⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 black_box.v

📁 DDR2源代码 DDR2源代码 DDR2源代码
💻 V
字号:
//*****************************************************************************// DISCLAIMER OF LIABILITY// // This text/file contains proprietary, confidential// information of Xilinx, Inc., is distributed under license// from Xilinx, Inc., and may be used, copied and/or// disclosed only pursuant to the terms of a valid license// agreement with Xilinx, Inc. Xilinx hereby grants you a // license to use this text/file solely for design, simulation, // implementation and creation of design files limited // to Xilinx devices or technologies. Use with non-Xilinx // devices or technologies is expressly prohibited and // immediately terminates your license unless covered by// a separate agreement.//// Xilinx is providing this design, code, or information // "as-is" solely for use in developing programs and // solutions for Xilinx devices, with no obligation on the // part of Xilinx to provide support. By providing this design, // code, or information as one possible implementation of // this feature, application or standard, Xilinx is making no // representation that this implementation is free from any // claims of infringement. You are responsible for // obtaining any rights you may require for your implementation. // Xilinx expressly disclaims any warranty whatsoever with // respect to the adequacy of the implementation, including // but not limited to any warranties or representations that this// implementation is free from claims of infringement, implied // warranties of merchantability or fitness for a particular // purpose.//// Xilinx products are not intended for use in life support// appliances, devices, or systems. Use in such applications is// expressly prohibited.//// Any modifications that are made to the Source Code are // done at the user抯 sole risk and will be unsupported.//// Copyright (c) 2006-2007 Xilinx, Inc. All rights reserved.//// This copyright and support notice must be retained as part // of this text at all times. //*****************************************************************************//   ____  ____//  /   /\/   /// /___/  \  /    Vendor: Xilinx// \   \   \/     Version: 2.1//  \   \         Application: MIG//  /   /         Filename: black_box.v// /___/   /\     Date Last Modified: $Date: 2007/12/07 02:45:44 $// \   \  /  \    Date Created: Mon Dec 11 2006//  \___\/\___\////Device: Virtex-5//Design Name: DDR2//Purpose://   Black box declarations for primitives Synplify Pro doesn't recognize.//   Use only for Synplify Pro - don't need for XST or for simulation.//   Eventually these may not be needed for Synplify Pro as the tool//   recognizes these primitives in future builds//Reference://Revision History://*****************************************************************************`timescale 1ns/1ps(* syn_black_box *) module IODELAY  (DATAOUT,   C,   CE,   DATAIN,   IDATAIN,   INC,   ODATAIN,   RST,   T)  /* synthesis syn_black_box */;  parameter DELAY_SRC    = "I";  parameter HIGH_PERFORMANCE_MODE    = "FALSE";  parameter IDELAY_TYPE  = "DEFAULT";  parameter IDELAY_VALUE = 0;  parameter ODELAY_VALUE = 0;  parameter REFCLK_FREQUENCY = 200.0;  output    DATAOUT;  input     C;  input     CE;  input     DATAIN;  input     IDATAIN;  input     INC;  input     ODATAIN;  input     RST;  input     T ;endmodule(* syn_black_box *) module ISERDES_NODELAY  (Q1,   Q2,   Q3,   Q4,   Q5,   Q6,   SHIFTOUT1,   SHIFTOUT2,   BITSLIP,   CE1,   CE2,   CLK,   CLKB,   CLKDIV,   D,   OCLK,   RST,   SHIFTIN1,   SHIFTIN2)  /* synthesis syn_black_box */;  parameter BITSLIP_ENABLE = "FALSE";  parameter DATA_RATE = "DDR";  parameter DATA_WIDTH = 4;  parameter INIT_Q1 = 1'b0;  parameter INIT_Q2 = 1'b0;  parameter INIT_Q3 = 1'b0;  parameter INIT_Q4 = 1'b0;  parameter INTERFACE_TYPE = "MEMORY";  parameter NUM_CE = 2;  parameter SERDES_MODE = "MASTER";  output    Q1;  output    Q2;  output    Q3;  output    Q4;  output    Q5;  output    Q6;  output    SHIFTOUT1;  output    SHIFTOUT2;  input     BITSLIP;  input     CE1;  input     CE2;  input     CLK;  input     CLKB;  input     CLKDIV;  input     D;  input     OCLK;  input     RST;  input     SHIFTIN1;  input     SHIFTIN2;endmodule(* syn_black_box *) module LUT6_2  (O5,   O6,   I0,   I1,   I2,   I3,   I4,   I5)  /* synthesis syn_black_box syn_lib_cell=1 xc_map=lut */;  parameter INIT = 64'h0000000000000000;  input I0, I1, I2, I3, I4, I5;  output O5, O6;endmodule

⌨️ 快捷键说明

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