diff options
| -rw-r--r-- | testsuite/synth/memmux01/memmux04.vhdl | 23 | ||||
| -rw-r--r-- | testsuite/synth/memmux01/tb_memmux04.vhdl | 51 | ||||
| -rwxr-xr-x | testsuite/synth/memmux01/testsuite.sh | 2 | 
3 files changed, 75 insertions, 1 deletions
| diff --git a/testsuite/synth/memmux01/memmux04.vhdl b/testsuite/synth/memmux01/memmux04.vhdl new file mode 100644 index 000000000..04fed7d62 --- /dev/null +++ b/testsuite/synth/memmux01/memmux04.vhdl @@ -0,0 +1,23 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity memmux04 is +  port (ad : std_logic_vector (1 downto 0); +        val : std_logic; +        dat : std_logic_vector (3 downto 0); +        res : out std_logic_vector (3 downto 0)); +end memmux04; + +architecture behav of memmux04 is +begin +  process (ad, val) +    variable hi, lo : natural; +    variable t : std_logic_vector(3 downto 0); +  begin +    lo := to_integer(unsigned(ad)); +    t := dat; +    t (lo) := val; +    res <= t; +  end process; +end behav; diff --git a/testsuite/synth/memmux01/tb_memmux04.vhdl b/testsuite/synth/memmux01/tb_memmux04.vhdl new file mode 100644 index 000000000..e53fe6f56 --- /dev/null +++ b/testsuite/synth/memmux01/tb_memmux04.vhdl @@ -0,0 +1,51 @@ +entity tb_memmux04 is +end tb_memmux04; + +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +architecture behav of tb_memmux04 is +  signal ad : std_logic_vector (1 downto 0); +  signal val : std_logic; +  signal dat, res : std_logic_vector (3 downto 0); +begin +  dut : entity work.memmux04 +    port map ( +      ad => ad, +      val => val, +      dat => dat, +      res => res); + +  process +  begin +    dat <= x"e"; +     +    ad <= "00"; +    val <= '0'; +    wait for 1 ns; +    assert res = x"e" severity failure; + +    ad <= "01"; +    val <= '0'; +    wait for 1 ns; +    assert res = x"c" severity failure; + +    ad <= "00"; +    val <= '1'; +    wait for 1 ns; +    assert res = x"f" severity failure; + +    ad <= "10"; +    val <= '0'; +    wait for 1 ns; +    assert res = x"a" severity failure; + +    ad <= "11"; +    val <= '0'; +    wait for 1 ns; +    assert res = x"6" severity failure; + +    wait; +  end process; +end behav; diff --git a/testsuite/synth/memmux01/testsuite.sh b/testsuite/synth/memmux01/testsuite.sh index a53d09350..024e51d2a 100755 --- a/testsuite/synth/memmux01/testsuite.sh +++ b/testsuite/synth/memmux01/testsuite.sh @@ -2,7 +2,7 @@  . ../../testenv.sh -for t in memmux01 memmux02 memmux03; do +for t in memmux01 memmux02 memmux03 memmux04; do      analyze $t.vhdl tb_$t.vhdl      elab_simulate tb_$t      clean | 
