diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-11-07 07:26:49 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-11-07 07:26:49 +0100 |
commit | e27db89e7e9f80e0c739e8fdb043a7dff72b0a0a (patch) | |
tree | 756a341dcb7da4eaa7d9d938a5d9c1652cb252b5 | |
parent | 4c08c5cbb898d8e14ee915cb667416c8c0b45050 (diff) | |
download | ghdl-yosys-plugin-e27db89e7e9f80e0c739e8fdb043a7dff72b0a0a.tar.gz ghdl-yosys-plugin-e27db89e7e9f80e0c739e8fdb043a7dff72b0a0a.tar.bz2 ghdl-yosys-plugin-e27db89e7e9f80e0c739e8fdb043a7dff72b0a0a.zip |
Add testcase from #36
-rw-r--r-- | testsuite/issues/issue36/bram.vhdl | 33 | ||||
-rwxr-xr-x | testsuite/issues/issue36/testsuite.sh | 9 |
2 files changed, 42 insertions, 0 deletions
diff --git a/testsuite/issues/issue36/bram.vhdl b/testsuite/issues/issue36/bram.vhdl new file mode 100644 index 0000000..fcfb98b --- /dev/null +++ b/testsuite/issues/issue36/bram.vhdl @@ -0,0 +1,33 @@ +library ieee; + use ieee.std_logic_1164.all; + use ieee.numeric_std.all; + +entity bram is + generic ( + addr_width : integer := 9; + data_width : integer := 8 + ); + port ( + clk : in std_logic; + we : in std_logic; + addr : in std_logic_vector(addr_width-1 downto 0); + data_in : in std_logic_vector(data_width-1 downto 0); + data_out : out std_logic_vector(data_width-1 downto 0) + ); +end bram; + +architecture rtl of bram is + type mem_type is array (0 to (2**addr_width)-1) of std_logic_vector(data_width-1 downto 0); + signal mem : mem_type; + +begin + process(clk) + begin + if rising_edge(clk) then + if we = '1' then + mem(to_integer(unsigned(addr))) <= data_in; + end if; + end if; + end process; + data_out <= mem(to_integer(unsigned(addr))); +end rtl; diff --git a/testsuite/issues/issue36/testsuite.sh b/testsuite/issues/issue36/testsuite.sh new file mode 100755 index 0000000..4377ed3 --- /dev/null +++ b/testsuite/issues/issue36/testsuite.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +topdir=../.. +. $topdir/testenv.sh + +synth_import bram.vhdl -e + +clean +echo OK |