Forum Discussion
CBart19
New Contributor
6 years agoIt seems things work if I construct the arrays in two steps from std_logic elements.
type tx_vector is array (17 downto 0) of std_logic;
type rx_vector is array (25 downto 0) of std_logic;
type tx_array is array (natural range <>) of tx_vector;
type rx_array is array (natural range <>) of rx_vector;
I can then use the tx_array and rx_array.
Is there a reason for this?
This is not what I need. Ultimately, I need an array of std_logic_vectors.