blob: 820e0b84ac08caa51b974ff89110462352e7cc42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
library work;
use work.sample_pkg.all;
entity pkg_test is
port (
o : out integer
);
end pkg_test;
architecture rtl of pkg_test is
begin
o <= SAMPLE_CONSTANT;
end rtl;
|