blob: e8a0aba8114e6820e9df51f64b3cb398852ce0f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
entity ent is
end entity;
package pkg1 is
function cond return boolean;
end pkg1;
package pkg2 is
function cond return boolean;
end pkg2;
use work.pkg1.all;
use work.pkg2.all;
architecture a of ent is
type enum_t is (cond);
begin
main : process
begin
if cond then
end if;
end process;
end architecture;
|