-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_mem.v
More file actions
56 lines (48 loc) · 1.24 KB
/
data_mem.v
File metadata and controls
56 lines (48 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 02/22/2023 07:58:00 PM
// Design Name:
// Module Name: single_port_BRAM
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module data_mem
#(parameter ADDRESS_WIDTH = 32,
DATA_WIDTH = 32
)(
input wire clk, n_clr,
input wire write_en,
input wire [DATA_WIDTH-1: 0] data_in,
input wire [ADDRESS_WIDTH-1: 0] addr,
output wire [DATA_WIDTH-1: 0] data_out
);
localparam DEPTH = 64;
// memory
reg [DATA_WIDTH-1: 0] data_mem [DEPTH-1: 0] ;
reg [DATA_WIDTH-1: 0] data ;
integer i;
always @(posedge clk) begin
if(~n_clr)
for (i= 0 ; i < DEPTH ; i = i + 1 ) begin
data_mem [i] <= 0;
end
else if(write_en)
data_mem [addr[31:2]] <= data_in;
end
always @ * begin
data = data_mem [addr[31:2]];
end
assign data_out = data;
endmodule