aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/oper01/tb_snum03.vhdl
blob: 13b090d674034f52b278bbca1f44972d44d3f392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
entity tb_snum03 is
end tb_snum03;

library ieee;
use ieee.std_logic_1164.all;

architecture behav of tb_snum03 is
  signal r : boolean;
begin
  cmp03_1: entity work.snum03
    port map (r);

  process
  begin
    wait for 1 ns;
    assert r severity failure;

    wait;
  end process;
end behav;