aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/arr02/tb_arr03.vhdl
blob: fa57c0756aba32bb8e7b08f090ddb98c14f97d77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
entity tb_arr03 is
end tb_arr03;

library ieee;
use ieee.std_logic_1164.all;

architecture behav of tb_arr03 is
  signal a : std_logic_vector (31 downto 0);
  signal sel : natural range 0 to 3;
  signal clk : std_logic;
  signal res : std_logic_vector (3 downto 0);
begin
  dut: entity work.arr03
    port map (a, sel, clk, res);

  process
    procedure pulse is
    begin
      clk <= '0';
      wait for 1 ns;
      clk <= '1';
      wait for 1 ns;
    end pulse;
  begin
    a <= x"a1b2c3d4";
    sel <= 0;
    pulse;
    pulse;
    assert res = b"0100" severity failure;

    sel <= 1;
    pulse;
    assert res = b"0100" severity failure;

    sel <= 2;
    pulse;
    assert res = b"0110" severity failure;

    sel <= 3;
    pulse;
    assert res = b"1000" severity failure;

    sel <= 0;
    pulse;
    assert res = b"1010" severity failure;

    wait;
  end process;
end behav;