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/tb_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/tb_rom1.vhdl')
-rw-r--r-- | testsuite/synth/mem01/tb_rom1.vhdl | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/testsuite/synth/mem01/tb_rom1.vhdl b/testsuite/synth/mem01/tb_rom1.vhdl new file mode 100644 index 000000000..4a7f96d29 --- /dev/null +++ b/testsuite/synth/mem01/tb_rom1.vhdl @@ -0,0 +1,38 @@ +entity tb_rom1 is +end tb_rom1; + +library ieee; +use ieee.std_logic_1164.all; + +architecture behav of tb_rom1 is + signal addr : std_logic_vector(3 downto 0); + signal dat : std_logic_vector(7 downto 0); +begin + dut: entity work.rom1 + port map (addr, dat); + + process + begin + addr <= "0000"; + wait for 1 ns; + assert dat = x"00" severity failure; + + addr <= "0101"; + wait for 1 ns; + assert dat = x"41" severity failure; + + addr <= "1100"; + wait for 1 ns; + assert dat = x"fc" severity failure; + + addr <= "1011"; + wait for 1 ns; + assert dat = x"fb" severity failure; + + addr <= "0010"; + wait for 1 ns; + assert dat = x"02" severity failure; + + wait; + end process; +end behav; |