I have a signal in VHDL declared like this :
signal Temp_Key : std_logic_vector(79 downto 0);
This Temp_Key is passed through a for loop 31 times and it is modified. I want to store all the 31 different Temp_Keys in an array.
Is it possible to use multi-dimensional arrays in VHDL to store 80 bit signals ?