blob: e6b1f8c32490b2212ceec17120fa3f2cbf37c3b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
entity tb_snum02 is
end tb_snum02;
library ieee;
use ieee.std_logic_1164.all;
architecture behav of tb_snum02 is
signal r : boolean;
begin
cmp02_1: entity work.snum02
port map (r);
process
begin
wait for 1 ns;
assert r severity failure;
wait;
end process;
end behav;
|