| [6] | 1 | /******************************************************************************* | 
|---|
 | 2 | *     This file is owned and controlled by Xilinx and must be used             * | 
|---|
 | 3 | *     solely for design, simulation, implementation and creation of            * | 
|---|
 | 4 | *     design files limited to Xilinx devices or technologies. Use              * | 
|---|
 | 5 | *     with non-Xilinx devices or technologies is expressly prohibited          * | 
|---|
 | 6 | *     and immediately terminates your license.                                 * | 
|---|
 | 7 | *                                                                              * | 
|---|
 | 8 | *     XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS"            * | 
|---|
 | 9 | *     SOLELY FOR USE IN DEVELOPING PROGRAMS AND SOLUTIONS FOR                  * | 
|---|
 | 10 | *     XILINX DEVICES.  BY PROVIDING THIS DESIGN, CODE, OR INFORMATION          * | 
|---|
 | 11 | *     AS ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE, APPLICATION              * | 
|---|
 | 12 | *     OR STANDARD, XILINX IS MAKING NO REPRESENTATION THAT THIS                * | 
|---|
 | 13 | *     IMPLEMENTATION IS FREE FROM ANY CLAIMS OF INFRINGEMENT,                  * | 
|---|
 | 14 | *     AND YOU ARE RESPONSIBLE FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE         * | 
|---|
 | 15 | *     FOR YOUR IMPLEMENTATION.  XILINX EXPRESSLY DISCLAIMS ANY                 * | 
|---|
 | 16 | *     WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE                  * | 
|---|
 | 17 | *     IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR           * | 
|---|
 | 18 | *     REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF          * | 
|---|
 | 19 | *     INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS          * | 
|---|
 | 20 | *     FOR A PARTICULAR PURPOSE.                                                * | 
|---|
 | 21 | *                                                                              * | 
|---|
 | 22 | *     Xilinx products are not intended for use in life support                 * | 
|---|
 | 23 | *     appliances, devices, or systems. Use in such applications are            * | 
|---|
 | 24 | *     expressly prohibited.                                                    * | 
|---|
 | 25 | *                                                                              * | 
|---|
 | 26 | *     (c) Copyright 1995-2009 Xilinx, Inc.                                     * | 
|---|
 | 27 | *     All rights reserved.                                                     * | 
|---|
 | 28 | *******************************************************************************/ | 
|---|
 | 29 | // The following must be inserted into your Verilog file for this | 
|---|
 | 30 | // core to be instantiated. Change the instance name and port connections | 
|---|
 | 31 | // (in parentheses) to your own signal names. | 
|---|
 | 32 |  | 
|---|
 | 33 | //----------- Begin Cut here for INSTANTIATION Template ---// INST_TAG | 
|---|
 | 34 | dram_fifo YourInstanceName ( | 
|---|
 | 35 |         .rst(rst), | 
|---|
 | 36 |         .wr_clk(wr_clk), | 
|---|
 | 37 |         .rd_clk(rd_clk), | 
|---|
 | 38 |         .din(din), // Bus [103 : 0]  | 
|---|
 | 39 |         .wr_en(wr_en), | 
|---|
 | 40 |         .rd_en(rd_en), | 
|---|
 | 41 |         .dout(dout), // Bus [103 : 0]  | 
|---|
 | 42 |         .full(full), | 
|---|
 | 43 |         .empty(empty), | 
|---|
 | 44 |         .wr_data_count(wr_data_count)); // Bus [7 : 0]  | 
|---|
 | 45 |  | 
|---|
 | 46 | // INST_TAG_END ------ End INSTANTIATION Template --------- | 
|---|
 | 47 |  | 
|---|
 | 48 | // You must compile the wrapper file dram_fifo.v when simulating | 
|---|
 | 49 | // the core, dram_fifo. When compiling the wrapper file, be sure to | 
|---|
 | 50 | // reference the XilinxCoreLib Verilog simulation library. For detailed | 
|---|
 | 51 | // instructions, please refer to the "CORE Generator Help". | 
|---|
 | 52 |  | 
|---|