blob: 35dd97169196d067f311b62f1d632c45a025bf95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
entity repro_ch is
port (a : out bit);
end repro_ch;
architecture syn of repro_ch is
begin
a <= '1';
end syn;
entity repro is
port (b : out bit);
end repro;
architecture syn of repro is
component repro_ch is
port (a : out bit);
end component;
begin
dut: repro_ch
port map (a => b);
end syn;
configuration repro_cfg of repro is
for syn
for dut : repro_ch
for syn
end for;
end for;
end for;
end configuration;
|