73 lines
2.3 KiB
Systemverilog
73 lines
2.3 KiB
Systemverilog
/*
|
|
Copyright 2020 Blue Liang, liangkangnan@163.com
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
`include "../core/defines.sv"
|
|
|
|
|
|
module gen_ram #(
|
|
parameter DP = 512,
|
|
parameter DW = 32,
|
|
parameter MW = 4,
|
|
parameter AW = 32)(
|
|
|
|
input wire clk,
|
|
input wire[AW-1:0] addr_i,
|
|
input wire[DW-1:0] data_i,
|
|
input wire[MW-1:0] sel_i,
|
|
input wire we_i,
|
|
|
|
output wire[DW-1:0] data_o
|
|
|
|
);
|
|
|
|
reg[DW-1:0] ram [0:DP-1];
|
|
reg[AW-1:0] addr_r;
|
|
wire[MW-1:0] wen;
|
|
wire ren;
|
|
|
|
assign ren = (~we_i);
|
|
assign wen = ({MW{we_i}} & sel_i);
|
|
|
|
always @ (posedge clk) begin
|
|
if (ren) begin
|
|
addr_r <= addr_i;
|
|
end
|
|
end
|
|
|
|
assign data_o = ram[addr_r];
|
|
|
|
genvar i;
|
|
|
|
generate
|
|
for (i = 0; i < MW; i = i + 1) begin: sel_width
|
|
if ((8 * i + 8) > DW) begin: i_gt_8
|
|
always @ (posedge clk) begin: i_gt_8_ff
|
|
if (wen[i]) begin: gt_8_wen
|
|
ram[addr_i][DW-1:8*i] <= data_i[DW-1:8*i];
|
|
end
|
|
end
|
|
end else begin: i_lt_8
|
|
always @ (posedge clk) begin: i_lt_8_ff
|
|
if (wen[i]) begin: lt_8_wen
|
|
ram[addr_i][8*i+7:8*i] <= data_i[8*i+7:8*i];
|
|
end
|
|
end
|
|
end
|
|
end
|
|
endgenerate
|
|
|
|
endmodule
|