blob: 97457a53d5d17fa3115d4d03e41052c736527bce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
entity var4 is
end;
use work.pkg.all;
architecture behav of var4 is
begin
process
variable v1 : rec_4;
variable v2 : rec_4dyn;
begin
v2 := v1;
wait;
end process;
end behav;
|