blob: 4ba82f6b0b282987cc3db78327dc622e7da4cfc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
entity tb_simple is
package pkg1 is
constant c : natural := 5;
end pkg1;
end tb_simple;
architecture behav of tb_simple is
begin
assert pkg1.c = 5 severity failure;
assert pkg1.c /= 5 report "value is correct" severity note;
end behav;
|