OpenCores
URL https://opencores.org/ocsvn/openmsp430/openmsp430/trunk

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [fpga/] [xilinx_avnet_lx9microbard/] [rtl/] [verilog/] [coregen/] [ram_16x8k_dp_synth.v] - Blame information for rev 167

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 167 olivier.gi
/*******************************************************************************
2
*     This file is owned and controlled by Xilinx and must be used solely      *
3
*     for design, simulation, implementation and creation of design files      *
4
*     limited to Xilinx devices or technologies. Use with non-Xilinx           *
5
*     devices or technologies is expressly prohibited and immediately          *
6
*     terminates your license.                                                 *
7
*                                                                              *
8
*     XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS" SOLELY     *
9
*     FOR USE IN DEVELOPING PROGRAMS AND SOLUTIONS FOR XILINX DEVICES.  BY     *
10
*     PROVIDING THIS DESIGN, CODE, OR INFORMATION AS ONE POSSIBLE              *
11
*     IMPLEMENTATION OF THIS FEATURE, APPLICATION OR STANDARD, XILINX IS       *
12
*     MAKING NO REPRESENTATION THAT THIS IMPLEMENTATION IS FREE FROM ANY       *
13
*     CLAIMS OF INFRINGEMENT, AND YOU ARE RESPONSIBLE FOR OBTAINING ANY        *
14
*     RIGHTS YOU MAY REQUIRE FOR YOUR IMPLEMENTATION.  XILINX EXPRESSLY        *
15
*     DISCLAIMS ANY WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE    *
16
*     IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR           *
17
*     REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF          *
18
*     INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A    *
19
*     PARTICULAR PURPOSE.                                                      *
20
*                                                                              *
21
*     Xilinx products are not intended for use in life support appliances,     *
22
*     devices, or systems.  Use in such applications are expressly             *
23
*     prohibited.                                                              *
24
*                                                                              *
25
*     (c) Copyright 1995-2012 Xilinx, Inc.                                     *
26
*     All rights reserved.                                                     *
27
*******************************************************************************/
28
 
29
/*******************************************************************************
30
*     Generated from core with identifier: xilinx.com:ip:blk_mem_gen:7.2       *
31
*                                                                              *
32
*     The Xilinx LogiCORE IP Block Memory Generator replaces the Dual Port     *
33
*     Block Memory and Single Port Block Memory LogiCOREs, but is not a        *
34
*     direct drop-in replacement.  It should be used in all new Xilinx         *
35
*     designs. The core supports RAM and ROM functions over a wide range of    *
36
*     widths and depths. Use this core to generate block memories with         *
37
*     symmetric or asymmetric read and write port widths, as well as cores     *
38
*     which can perform simultaneous write operations to separate              *
39
*     locations, and simultaneous read operations from the same location.      *
40
*     For more information on differences in interface and feature support     *
41
*     between this core and the Dual Port Block Memory and Single Port         *
42
*     Block Memory LogiCOREs, please consult the data sheet.                   *
43
*******************************************************************************/
44
// Synthesized Netlist Wrapper
45
// This file is provided to wrap around the synthesized netlist (if appropriate)
46
 
47
// Interfaces:
48
//    CLK.ACLK
49
//        AXI4 Interconnect Clock Input
50
//    RST.ARESETN
51
//        AXI4 Interconnect Reset Input
52
//    AXI_SLAVE_S_AXI
53
//        AXI_SLAVE
54
//    AXILite_SLAVE_S_AXI
55
//        AXILite_SLAVE
56
//    BRAM_PORTA
57
//        BRAM_PORTA
58
//    BRAM_PORTB
59
//        BRAM_PORTB
60
 
61
module ram_16x8k_dp (
62
  clka,
63
  ena,
64
  wea,
65
  addra,
66
  dina,
67
  douta,
68
  clkb,
69
  enb,
70
  web,
71
  addrb,
72
  dinb,
73
  doutb
74
);
75
 
76
  input clka;
77
  input ena;
78
  input [1 : 0] wea;
79
  input [12 : 0] addra;
80
  input [15 : 0] dina;
81
  output [15 : 0] douta;
82
  input clkb;
83
  input enb;
84
  input [1 : 0] web;
85
  input [12 : 0] addrb;
86
  input [15 : 0] dinb;
87
  output [15 : 0] doutb;
88
 
89
  // WARNING: This file provides a module declaration only, it does not support
90
  //          direct instantiation. Please use an instantiation template (VEO) to
91
  //          instantiate the IP within a design.
92
 
93
endmodule
94
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.