Forum Discussion
Altera_Forum
Honored Contributor
11 years agohere is your problem:
signal array_index: std_logic_vector (1 to 0); it is a null array, as 1 is higher than 0. I think you meant (1 downto 0) Another point - why is array index a std_logic_vector? save your fingers from RSI, and make it: signal array_index : integer range 0 to 3;