blob: 869197921b41d931e90e71a4f11745fa6a230518 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
configuration conf of repro is
for behav
for c : comp
use entity work.comp;
for behav
for c2 : comp2
use entity work.comp2 (behav);
end for;
end for;
end for;
end for;
end conf;
architecture behav of comp2 is
begin
assert s = '1';
end behav;
|