aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ecp5/dpram.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ecp5/dpram.v')
-rw-r--r--tests/ecp5/dpram.v20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ecp5/dpram.v b/tests/ecp5/dpram.v
new file mode 100644
index 000000000..2e69d6b3b
--- /dev/null
+++ b/tests/ecp5/dpram.v
@@ -0,0 +1,20 @@
+module top (din, write_en, waddr, wclk, raddr, rclk, dout);
+parameter addr_width = 8;
+parameter data_width = 8;
+input [addr_width-1:0] waddr, raddr;
+input [data_width-1:0] din;
+input write_en, wclk, rclk;
+output [data_width-1:0] dout;
+reg [data_width-1:0] dout;
+reg [data_width-1:0] mem [(1<<addr_width)-1:0]
+/* synthesis syn_ramstyle = "no_rw_check" */ ;
+always @(posedge wclk) // Write memory.
+begin
+if (write_en)
+mem[waddr] <= din; // Using write address bus.
+end
+always @(posedge rclk) // Read memory.
+begin
+dout <= mem[raddr]; // Using read address bus.
+end
+endmodule