aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue2187/rom16.vhd
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue2187/rom16.vhd')
-rw-r--r--testsuite/synth/issue2187/rom16.vhd23
1 files changed, 23 insertions, 0 deletions
diff --git a/testsuite/synth/issue2187/rom16.vhd b/testsuite/synth/issue2187/rom16.vhd
new file mode 100644
index 000000000..188cc2c1e
--- /dev/null
+++ b/testsuite/synth/issue2187/rom16.vhd
@@ -0,0 +1,23 @@
+-- A simple synthesized ROM, which reads from a binary file at synthesis time
+-- single 16 bit read port.
+library ieee;
+use ieee.std_logic_1164.all;
+use ieee.numeric_std.all;
+use work.rawfile_pack.all;
+
+entity simple_rom16 is
+ generic (
+ -- 16-bit read port. ADDR_WIDTH is in bytes, not words.
+ ADDR_WIDTH : integer := 8 -- default 256 bytes
+ );
+ port (
+ raddr : in std_logic_vector(ADDR_WIDTH - 2 downto 0);
+ do : out std_logic_vector(15 downto 0));
+end simple_rom16;
+
+architecture behavioral of simple_rom16 is
+ constant NUM_WORDS : integer := 2**(ADDR_WIDTH - 1);
+ signal rom : rom16_t(0 to NUM_WORDS-1) := fread_elf("image.elf", NUM_WORDS);
+begin
+ do <= rom(to_integer(unsigned(raddr)));
+end behavioral;