T
Taras_96
Guest
Ok, can anyone tell me why:
constant B4 : unsigned := "010";
constant CONST : unsigned := B4 + "001"; --is NOT locally static
constant B4 : integer := 2;
constant CONST : integer := B4 + 1; -- is locally static
Taras
constant B4 : unsigned := "010";
constant CONST : unsigned := B4 + "001"; --is NOT locally static
constant B4 : integer := 2;
constant CONST : integer := B4 + 1; -- is locally static
Taras