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

Subversion Repositories wf3d

[/] [wf3d/] [trunk/] [implement/] [rtl/] [axi_cmn/] [fm_cmn_bram_01.v] - Blame information for rev 9

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 5 specular
//=======================================================================
2
// Project Monophony
3
//   Wire-Frame 3D Graphics Accelerator IP Core
4
//
5
// File:
6
//   fm_cmn_bram_01.v
7
//
8
// Abstract:
9
//   Dual-port RAM(will be mapped onto block ram)
10
//
11
// Author:
12 9 specular
//   Kenji Ishimaru (info.info.wf3d@gmail.com)
13 5 specular
//
14
//======================================================================
15
//
16
// Copyright (c) 2016, Kenji Ishimaru
17
// All rights reserved.
18
//
19
// Redistribution and use in source and binary forms, with or without
20
// modification, are permitted provided that the following conditions are met:
21
//
22
//  -Redistributions of source code must retain the above copyright notice,
23
//   this list of conditions and the following disclaimer.
24
//  -Redistributions in binary form must reproduce the above copyright notice,
25
//   this list of conditions and the following disclaimer in the documentation
26
//   and/or other materials provided with the distribution.
27
//
28
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
30
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
31
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
32
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
33
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
34
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
35
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
36
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
37
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
38
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39
//
40
// Revision History
41
 
42
// synthesis attribute ram_style of fm_cmn_bram_01 is block;
43
 
44
module fm_cmn_bram_01 (
45
    clk,
46
    we,
47
    a,
48
    dpra,
49
    di,
50
    spo,
51
    dpo
52
 );
53
 
54
//////////////////////////////////
55
// parameter
56
//////////////////////////////////
57
    parameter P_WIDTH = 32;
58
    parameter P_RANGE = 2;
59
    parameter P_DEPTH = 1 << P_RANGE;
60
//////////////////////////////////
61
// I/O port definition
62
//////////////////////////////////
63
    input                clk;
64
    input                we;
65
    input  [P_RANGE-1:0] a;
66
    input  [P_RANGE-1:0] dpra;
67
    input  [P_WIDTH-1:0] di;
68
    output [P_WIDTH-1:0] spo;
69
    output [P_WIDTH-1:0] dpo;
70
 
71
//////////////////////////////////
72
// reg 
73
//////////////////////////////////
74
    reg [P_WIDTH-1:0] ram [P_DEPTH-1:0];
75
    reg [P_WIDTH-1:0] spo;
76
    reg [P_WIDTH-1:0] dpo;
77
 
78
//////////////////////////////////
79
// always
80
//////////////////////////////////
81
    // port A: write-first
82
    always @(posedge clk) begin
83
        if (we) begin
84
            ram[a] <= di;
85
            spo <= di;
86
        end else begin
87
            spo <= ram[a];
88
        end
89
    end
90
 
91
    // port B: read-first
92
    always @(posedge clk) begin
93
        dpo <= ram[dpra];
94
    end
95
 
96
endmodule

powered by: WebSVN 2.1.0

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