blob: 4422c81cc7ce7cc4b99ff269c06a668718c0f136 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package support_pkg is
function ">" ( l,r : integer ) return bit;
end support_pkg;
use work.support_pkg.all;
entity repro1 is
end;
architecture behav of repro1 is
signal sov : bit_vector(0 to 21);
begin
cfg : if sov'length > 1 generate
end generate;
end;
|