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

Subversion Repositories two_dimensional_fast_hartley_transform

[/] [two_dimensional_fast_hartley_transform/] [trunk/] [dpsram_128x16.v] - Blame information for rev 3

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 3 irezki
/*******************************************************************************
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-2007 Xilinx, Inc.                                     *
27
*     All rights reserved.                                                     *
28
*******************************************************************************/
29
// The synthesis directives "translate_off/translate_on" specified below are
30
// supported by Xilinx, Mentor Graphics and Synplicity synthesis
31
// tools. Ensure they are correct for your synthesis tool(s).
32
 
33
// You must compile the wrapper file dpsram_128x16.v when simulating
34
// the core, dpsram_128x16. When compiling the wrapper file, be sure to
35
// reference the XilinxCoreLib Verilog simulation library. For detailed
36
// instructions, please refer to the "CORE Generator Help".
37
 
38
`timescale 1ns/1ps
39
 
40
module dpsram_128x16(
41
        addra,
42
        addrb,
43
        clka,
44
        clkb,
45
        dina,
46
        dinb,
47
        douta,
48
        doutb,
49
        ena,
50
        enb,
51
        wea,
52
        web);
53
 
54
 
55
input [6 : 0] addra;
56
input [6 : 0] addrb;
57
input clka;
58
input clkb;
59
input [15 : 0] dina;
60
input [15 : 0] dinb;
61
output [15 : 0] douta;
62
output [15 : 0] doutb;
63
input ena;
64
input enb;
65
input wea;
66
input web;
67
 
68
// synthesis translate_off
69
 
70
      BLKMEMDP_V6_3 #(
71
                .c_addra_width(7),
72
                .c_addrb_width(7),
73
                .c_default_data("0"),
74
                .c_depth_a(128),
75
                .c_depth_b(128),
76
                .c_enable_rlocs(0),
77
                .c_has_default_data(1),
78
                .c_has_dina(1),
79
                .c_has_dinb(1),
80
                .c_has_douta(1),
81
                .c_has_doutb(1),
82
                .c_has_ena(1),
83
                .c_has_enb(1),
84
                .c_has_limit_data_pitch(0),
85
                .c_has_nda(0),
86
                .c_has_ndb(0),
87
                .c_has_rdya(0),
88
                .c_has_rdyb(0),
89
                .c_has_rfda(0),
90
                .c_has_rfdb(0),
91
                .c_has_sinita(0),
92
                .c_has_sinitb(0),
93
                .c_has_wea(1),
94
                .c_has_web(1),
95
                .c_limit_data_pitch(18),
96
                .c_mem_init_file("mif_file_16_1"),
97
                .c_pipe_stages_a(0),
98
                .c_pipe_stages_b(0),
99
                .c_reg_inputsa(0),
100
                .c_reg_inputsb(0),
101
                .c_sim_collision_check("NONE"),
102
                .c_sinita_value("0"),
103
                .c_sinitb_value("0"),
104
                .c_width_a(16),
105
                .c_width_b(16),
106
                .c_write_modea(2),
107
                .c_write_modeb(2),
108
                .c_ybottom_addr("0"),
109
                .c_yclka_is_rising(1),
110
                .c_yclkb_is_rising(1),
111
                .c_yena_is_high(0),
112
                .c_yenb_is_high(0),
113
                .c_yhierarchy("hierarchy1"),
114
                .c_ymake_bmm(0),
115
                .c_yprimitive_type("32kx1"),
116
                .c_ysinita_is_high(1),
117
                .c_ysinitb_is_high(1),
118
                .c_ytop_addr("1024"),
119
                .c_yuse_single_primitive(0),
120
                .c_ywea_is_high(0),
121
                .c_yweb_is_high(0),
122
                .c_yydisable_warnings(1))
123
        inst (
124
                .ADDRA(addra),
125
                .ADDRB(addrb),
126
                .CLKA(clka),
127
                .CLKB(clkb),
128
                .DINA(dina),
129
                .DINB(dinb),
130
                .DOUTA(douta),
131
                .DOUTB(doutb),
132
                .ENA(ena),
133
                .ENB(enb),
134
                .WEA(wea),
135
                .WEB(web),
136
                .NDA(),
137
                .NDB(),
138
                .RFDA(),
139
                .RFDB(),
140
                .RDYA(),
141
                .RDYB(),
142
                .SINITA(),
143
                .SINITB());
144
 
145
 
146
// synthesis translate_on
147
 
148
endmodule
149
 

powered by: WebSVN 2.1.0

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