diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-09-08 08:36:02 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-09-11 06:37:27 +0200 |
commit | 419d542accc0a0bd5f3daa833f202043ce6f480c (patch) | |
tree | 4a374481236e336367f72cdc5499081d8f46e785 /testsuite/synth/mem01/rom1.vhdl | |
parent | 1e1eab735ecad00ee663a68e3a5118e041c20739 (diff) | |
download | ghdl-419d542accc0a0bd5f3daa833f202043ce6f480c.tar.gz ghdl-419d542accc0a0bd5f3daa833f202043ce6f480c.tar.bz2 ghdl-419d542accc0a0bd5f3daa833f202043ce6f480c.zip |
testsuite/synth: rename arr02 to mem01
Diffstat (limited to 'testsuite/synth/mem01/rom1.vhdl')
-rw-r--r-- | testsuite/synth/mem01/rom1.vhdl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testsuite/synth/mem01/rom1.vhdl b/testsuite/synth/mem01/rom1.vhdl new file mode 100644 index 000000000..6b8245f30 --- /dev/null +++ b/testsuite/synth/mem01/rom1.vhdl @@ -0,0 +1,19 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity rom1 is + port (addr : std_logic_vector (3 downto 0); + val : out std_logic_vector (7 downto 0)); +end rom1; + +architecture behav of rom1 is + type t_myrom is array (0 to 15) of std_logic_vector (7 downto 0); + constant myrom : t_myrom := + (x"00", x"01", x"02", x"03", + x"40", x"41", x"42", x"43", + x"f8", x"f9", x"fa", x"fb", + x"fc", x"fd", x"fe", x"ff"); +begin + val <= myrom (to_integer(unsigned(addr))); +end behav; |