aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/dispin01/tb_rec06.vhdl
blob: d46d64d18d52e661a55d7c8c2f89adf142f4452e (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
entity tb_rec06 is
end tb_rec06;

library ieee;
use ieee.std_logic_1164.all;
use work.rec06_pkg.all;

architecture behav of tb_rec06 is
  signal inp : myrec;
  signal r : std_logic;
begin
  dut: entity work.rec06
    port map (inp => inp, o => r);

  process
  begin
    inp.a <= (2, "0000");
    inp.b <= '1';
    wait for 1 ns;
    assert r = '0' severity failure;

    inp.a <= (2, "0110");
    inp.b <= '1';
    wait for 1 ns;
    assert r = '1' severity failure;

    inp.a <= (3, "1001");
    inp.b <= '0';
    wait for 1 ns;
    assert r = '0' severity failure;

    inp.a <= (3, "0001");
    inp.b <= '1';
    wait for 1 ns;
    assert r = '0' severity failure;

    wait;
  end process;
end behav;