96 lines
2.8 KiB
Verilog
96 lines
2.8 KiB
Verilog
//-----------------------------------------------------------------------------
|
|
// Copyright 2017 Damien Pretet ThotIP
|
|
// Copyright 2018 Julius Baxter
|
|
//
|
|
// 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.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
`timescale 1 ns / 1 ps
|
|
`default_nettype none
|
|
|
|
module fifomem_dp
|
|
|
|
#(
|
|
parameter DATASIZE = 8, // Memory data word width
|
|
parameter ADDRSIZE = 4, // Number of mem address bits
|
|
parameter FALLTHROUGH = "TRUE" // First word fall-through
|
|
) (
|
|
input wire a_clk,
|
|
input wire [DATASIZE-1:0] a_wdata,
|
|
output wire [DATASIZE-1:0] a_rdata,
|
|
input wire [ADDRSIZE-1:0] a_addr,
|
|
input wire a_rinc,
|
|
input wire a_winc,
|
|
|
|
input wire b_clk,
|
|
input wire [DATASIZE-1:0] b_wdata,
|
|
output wire [DATASIZE-1:0] b_rdata,
|
|
input wire [ADDRSIZE-1:0] b_addr,
|
|
input wire b_rinc,
|
|
input wire b_winc
|
|
);
|
|
|
|
reg [DATASIZE-1:0] a_rdata_r;
|
|
reg [DATASIZE-1:0] b_rdata_r;
|
|
|
|
generate
|
|
|
|
localparam DEPTH = 1<<ADDRSIZE;
|
|
reg [DATASIZE-1:0] mem [0:DEPTH-1];
|
|
|
|
if (FALLTHROUGH == "TRUE") begin : fallthrough
|
|
|
|
always @(posedge a_clk)
|
|
if (a_winc)
|
|
mem[a_addr] <= a_wdata;
|
|
|
|
assign a_rdata = mem[a_addr];
|
|
|
|
always @(posedge b_clk)
|
|
if (b_winc)
|
|
mem[b_addr] <= b_wdata;
|
|
|
|
assign b_rdata = mem[b_addr];
|
|
|
|
end else begin : registered
|
|
|
|
wire a_en = a_rinc | a_winc;
|
|
|
|
always @(posedge a_clk)
|
|
if (a_en) begin
|
|
if (a_winc)
|
|
mem[a_addr] <= a_wdata;
|
|
a_rdata_r <= mem[a_addr];
|
|
end
|
|
|
|
assign a_rdata = a_rdata_r;
|
|
|
|
wire b_en = b_rinc | b_winc;
|
|
|
|
always @(posedge b_clk)
|
|
if (b_en) begin
|
|
if (b_winc)
|
|
mem[b_addr] <= b_wdata;
|
|
b_rdata_r <= mem[b_addr];
|
|
end
|
|
|
|
assign b_rdata = b_rdata_r;
|
|
|
|
end // block: registered
|
|
endgenerate
|
|
|
|
|
|
endmodule
|
|
|
|
`resetall
|