From de2f140c090742ec8ccded4cfacc2dc6bac2a562 Mon Sep 17 00:00:00 2001 From: KrystalDelusion Date: Tue, 5 Jul 2022 11:18:43 +1200 Subject: Testing TDP synth mapping New common sync_ram_tdp. Used in ecp5 and gatemate mem*.ys. --- tests/arch/common/blockram.v | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'tests/arch/common') diff --git a/tests/arch/common/blockram.v b/tests/arch/common/blockram.v index 5ed0736d0..6b557fdca 100644 --- a/tests/arch/common/blockram.v +++ b/tests/arch/common/blockram.v @@ -45,3 +45,34 @@ module sync_ram_sdp #(parameter DATA_WIDTH=8, ADDRESS_WIDTH=10) endmodule // sync_ram_sdp + +`default_nettype none +module sync_ram_tdp #(parameter DATA_WIDTH=8, ADDRESS_WIDTH=10) + (input wire clk_a, clk_b, + input wire write_enable_a, write_enable_b, + input wire read_enable_a, read_enable_b, + input wire [DATA_WIDTH-1:0] write_data_a, write_data_b, + input wire [ADDRESS_WIDTH-1:0] addr_a, addr_b, + output reg [DATA_WIDTH-1:0] read_data_a, read_data_b); + + localparam WORD = (DATA_WIDTH-1); + localparam DEPTH = (2**ADDRESS_WIDTH-1); + + reg [WORD:0] mem [0:DEPTH]; + + always @(posedge clk_a) begin + if (write_enable_a) + mem[addr_a] <= write_data_a; + else + read_data_a <= mem[addr_a]; + end + + always @(posedge clk_b) begin + if (write_enable_b) + mem[addr_b] <= write_data_b; + else + read_data_b <= mem[addr_b]; + end + +endmodule // sync_ram_tdp + -- cgit v1.2.3 From 51c2d476c2209b3dad9e0a0199648274b5c3ea82 Mon Sep 17 00:00:00 2001 From: KrystalDelusion Date: Mon, 25 Jul 2022 10:10:21 +1200 Subject: Removing extra `default_nettype` lines --- tests/arch/common/blockram.v | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests/arch/common') diff --git a/tests/arch/common/blockram.v b/tests/arch/common/blockram.v index 6b557fdca..c06ac96d5 100644 --- a/tests/arch/common/blockram.v +++ b/tests/arch/common/blockram.v @@ -22,7 +22,6 @@ module sync_ram_sp #(parameter DATA_WIDTH=8, ADDRESS_WIDTH=10) endmodule // sync_ram_sp -`default_nettype none module sync_ram_sdp #(parameter DATA_WIDTH=8, ADDRESS_WIDTH=10) (input wire clk, write_enable, input wire [DATA_WIDTH-1:0] data_in, @@ -46,7 +45,6 @@ module sync_ram_sdp #(parameter DATA_WIDTH=8, ADDRESS_WIDTH=10) endmodule // sync_ram_sdp -`default_nettype none module sync_ram_tdp #(parameter DATA_WIDTH=8, ADDRESS_WIDTH=10) (input wire clk_a, clk_b, input wire write_enable_a, write_enable_b, -- cgit v1.2.3