[10] | 1 | //***************************************************************************** |
---|
| 2 | // DISCLAIMER OF LIABILITY |
---|
| 3 | // |
---|
| 4 | // This file contains proprietary and confidential information of |
---|
| 5 | // Xilinx, Inc. ("Xilinx"), that is distributed under a license |
---|
| 6 | // from Xilinx, and may be used, copied and/or disclosed only |
---|
| 7 | // pursuant to the terms of a valid license agreement with Xilinx. |
---|
| 8 | // |
---|
| 9 | // XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION |
---|
| 10 | // ("MATERIALS") "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER |
---|
| 11 | // EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING WITHOUT |
---|
| 12 | // LIMITATION, ANY WARRANTY WITH RESPECT TO NONINFRINGEMENT, |
---|
| 13 | // MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE. Xilinx |
---|
| 14 | // does not warrant that functions included in the Materials will |
---|
| 15 | // meet the requirements of Licensee, or that the operation of the |
---|
| 16 | // Materials will be uninterrupted or error-free, or that defects |
---|
| 17 | // in the Materials will be corrected. Furthermore, Xilinx does |
---|
| 18 | // not warrant or make any representations regarding use, or the |
---|
| 19 | // results of the use, of the Materials in terms of correctness, |
---|
| 20 | // accuracy, reliability or otherwise. |
---|
| 21 | // |
---|
| 22 | // Xilinx products are not designed or intended to be fail-safe, |
---|
| 23 | // or for use in any application requiring fail-safe performance, |
---|
| 24 | // such as life-support or safety devices or systems, Class III |
---|
| 25 | // medical devices, nuclear facilities, applications related to |
---|
| 26 | // the deployment of airbags, or any other applications that could |
---|
| 27 | // lead to death, personal injury or severe property or |
---|
| 28 | // environmental damage (individually and collectively, "critical |
---|
| 29 | // applications"). Customer assumes the sole risk and liability |
---|
| 30 | // of any use of Xilinx products in critical applications, |
---|
| 31 | // subject only to applicable laws and regulations governing |
---|
| 32 | // limitations on product liability. |
---|
| 33 | // |
---|
| 34 | // Copyright 2006, 2007 Xilinx, Inc. |
---|
| 35 | // All rights reserved. |
---|
| 36 | // |
---|
| 37 | // This disclaimer and copyright notice must be retained as part |
---|
| 38 | // of this file at all times. |
---|
| 39 | //***************************************************************************** |
---|
| 40 | // ____ ____ |
---|
| 41 | // / /\/ / |
---|
| 42 | // /___/ \ / Vendor: Xilinx |
---|
| 43 | // \ \ \/ Version: 3.6 |
---|
| 44 | // \ \ Application: MIG |
---|
| 45 | // / / Filename: ddr2_chipscope.v |
---|
| 46 | // /___/ /\ Date Last Modified: $Data$ |
---|
| 47 | // \ \ / \ Date Created: 9/14/06 |
---|
| 48 | // \___\/\___\ |
---|
| 49 | // |
---|
| 50 | //Device: Virtex-5 |
---|
| 51 | //Purpose: |
---|
| 52 | // Skeleton Chipscope module declarations - for simulation only |
---|
| 53 | //Reference: |
---|
| 54 | //Revision History: |
---|
| 55 | // |
---|
| 56 | //***************************************************************************** |
---|
| 57 | |
---|
| 58 | `timescale 1ns/1ps |
---|
| 59 | |
---|
| 60 | module icon4 |
---|
| 61 | ( |
---|
| 62 | control0, |
---|
| 63 | control1, |
---|
| 64 | control2, |
---|
| 65 | control3 |
---|
| 66 | ) |
---|
| 67 | /* synthesis syn_black_box syn_noprune = 1 */; |
---|
| 68 | output [35:0] control0; |
---|
| 69 | output [35:0] control1; |
---|
| 70 | output [35:0] control2; |
---|
| 71 | output [35:0] control3; |
---|
| 72 | endmodule |
---|
| 73 | |
---|
| 74 | module vio_async_in192 |
---|
| 75 | ( |
---|
| 76 | control, |
---|
| 77 | async_in |
---|
| 78 | ) |
---|
| 79 | /* synthesis syn_black_box syn_noprune = 1 */; |
---|
| 80 | input [35:0] control; |
---|
| 81 | input [191:0] async_in; |
---|
| 82 | endmodule |
---|
| 83 | |
---|
| 84 | module vio_async_in96 |
---|
| 85 | ( |
---|
| 86 | control, |
---|
| 87 | async_in |
---|
| 88 | ) |
---|
| 89 | /* synthesis syn_black_box syn_noprune = 1 */; |
---|
| 90 | input [35:0] control; |
---|
| 91 | input [95:0] async_in; |
---|
| 92 | endmodule |
---|
| 93 | |
---|
| 94 | module vio_async_in100 |
---|
| 95 | ( |
---|
| 96 | control, |
---|
| 97 | async_in |
---|
| 98 | ) |
---|
| 99 | /* synthesis syn_black_box syn_noprune = 1 */; |
---|
| 100 | input [35:0] control; |
---|
| 101 | input [99:0] async_in; |
---|
| 102 | endmodule |
---|
| 103 | |
---|
| 104 | module vio_sync_out32 |
---|
| 105 | ( |
---|
| 106 | control, |
---|
| 107 | clk, |
---|
| 108 | sync_out |
---|
| 109 | ) |
---|
| 110 | /* synthesis syn_black_box syn_noprune = 1 */; |
---|
| 111 | input [35:0] control; |
---|
| 112 | input clk; |
---|
| 113 | output [31:0] sync_out; |
---|
| 114 | endmodule |
---|