diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-07-25 05:35:03 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-07-25 05:35:03 +0200 |
commit | e5aa8272090bba9224b6e544113ff8b2bce0dd33 (patch) | |
tree | 3d68a7557b0cc12eb9db7147c54ab07d5c41d21c /testsuite/synth/insert01/tb_insert02.vhdl | |
parent | fe4cf1f80f6c805e629e6909d259d17a915b05e3 (diff) | |
download | ghdl-e5aa8272090bba9224b6e544113ff8b2bce0dd33.tar.gz ghdl-e5aa8272090bba9224b6e544113ff8b2bce0dd33.tar.bz2 ghdl-e5aa8272090bba9224b6e544113ff8b2bce0dd33.zip |
synth: add test for previous commit.
Diffstat (limited to 'testsuite/synth/insert01/tb_insert02.vhdl')
-rw-r--r-- | testsuite/synth/insert01/tb_insert02.vhdl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testsuite/synth/insert01/tb_insert02.vhdl b/testsuite/synth/insert01/tb_insert02.vhdl new file mode 100644 index 000000000..b2b125288 --- /dev/null +++ b/testsuite/synth/insert01/tb_insert02.vhdl @@ -0,0 +1,25 @@ +entity tb_insert02 is +end tb_insert02; + +library ieee; +use ieee.std_logic_1164.all; + +architecture behav of tb_insert02 is + signal a : std_logic_vector (3 downto 0); + signal b : std_logic_vector (1 downto 0); + signal o0, o1, o2 : std_logic_vector (3 downto 0); +begin + dut: entity work.insert02 + port map (a, b, o0, o1, o2); + + process + begin + a <= "0111"; + b <= "10"; + wait for 1 ns; + assert o0 = "0110" severity failure; + assert o1 = "0101" severity failure; + assert o2 = "1011" severity failure; + wait; + end process; +end behav; |