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

Subversion Repositories brisc

[/] [brisc/] [trunk/] [prog_mem.v] - Blame information for rev 5

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 waqqas.jab
/*******************************************************************************
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-2006 Xilinx, Inc.                                     *
27
*     All rights reserved.                                                     *
28
*******************************************************************************/
29
// The synopsys directives "translate_off/translate_on" specified below are
30
// supported by XST, FPGA Compiler II, Mentor Graphics and Synplicity synthesis
31
// tools. Ensure they are correct for your synthesis tool(s).
32
 
33
// You must compile the wrapper file prog_mem.v when simulating
34
// the core, prog_mem. 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 prog_mem(
41
        addr,
42
        clk,
43
        dout);
44
 
45
 
46
input [7 : 0] addr;
47
input clk;
48
output [47 : 0] dout;
49
 
50
// synopsys translate_off
51
 
52
      BLKMEMSP_V6_2 #(
53
                8,      // c_addr_width
54
                "0",     // c_default_data
55
                256,    // c_depth
56
                0,       // c_enable_rlocs
57
                0,       // c_has_default_data
58
                0,       // c_has_din
59
                0,       // c_has_en
60
                0,       // c_has_limit_data_pitch
61
                0,       // c_has_nd
62
                0,       // c_has_rdy
63
                0,       // c_has_rfd
64
                0,       // c_has_sinit
65
                0,       // c_has_we
66
                18,     // c_limit_data_pitch
67
                "prog_mem.mif", // c_mem_init_file
68
                0,       // c_pipe_stages
69
                0,       // c_reg_inputs
70
                "0",     // c_sinit_value
71
                48,     // c_width
72
                0,       // c_write_mode
73
                "0",     // c_ybottom_addr
74
                1,      // c_yclk_is_rising
75
                1,      // c_yen_is_high
76
                "hierarchy1",   // c_yhierarchy
77
                0,       // c_ymake_bmm
78
                "16kx1",        // c_yprimitive_type
79
                1,      // c_ysinit_is_high
80
                "1024", // c_ytop_addr
81
                0,       // c_yuse_single_primitive
82
                1,      // c_ywe_is_high
83
                1)      // c_yydisable_warnings
84
        inst (
85
                .ADDR(addr),
86
                .CLK(clk),
87
                .DOUT(dout),
88
                .DIN(),
89
                .EN(),
90
                .ND(),
91
                .RFD(),
92
                .RDY(),
93
                .SINIT(),
94
                .WE());
95
 
96
 
97
// synopsys translate_on
98
 
99
// FPGA Express black box declaration
100
// synopsys attribute fpga_dont_touch "true"
101
// synthesis attribute fpga_dont_touch of prog_mem is "true"
102
 
103
// XST black box declaration
104
// box_type "black_box"
105
// synthesis attribute box_type of prog_mem is "black_box"
106
 
107
endmodule
108
 

powered by: WebSVN 2.1.0

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