aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/mem2d01/dpram1r.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/mem2d01/dpram1r.vhdl')
-rw-r--r--testsuite/synth/mem2d01/dpram1r.vhdl25
1 files changed, 25 insertions, 0 deletions
diff --git a/testsuite/synth/mem2d01/dpram1r.vhdl b/testsuite/synth/mem2d01/dpram1r.vhdl
new file mode 100644
index 000000000..2c1335a1b
--- /dev/null
+++ b/testsuite/synth/mem2d01/dpram1r.vhdl
@@ -0,0 +1,25 @@
+library ieee;
+use ieee.std_logic_1164.all;
+use ieee.numeric_std.all;
+
+entity dpram1r is
+ port (raddr : natural range 0 to 3;
+ rbit : natural range 0 to 7;
+ rdat : out std_logic;
+ waddr : natural range 0 to 3;
+ wdat : std_logic_vector (7 downto 0);
+ clk : std_logic);
+end dpram1r;
+
+architecture behav of dpram1r is
+ type memtype is array (0 to 3) of std_logic_vector (7 downto 0);
+ signal mem : memtype;
+begin
+ process (clk)
+ begin
+ if rising_edge (clk) then
+ rdat <= mem (raddr)(rbit);
+ mem (waddr) <= wdat;
+ end if;
+ end process;
+end behav;