F
fl
Hi,
I know downto and to for one dimension array. I see the following definition in a file.
But for two dimension array, what happens?
...................
TYPE ram_type IS ARRAY (63 DOWNTO 0) of std_logic_vector(31 DOWNTO 0);
...................
I want to know what is the difference between the above one with:
...................
TYPE ram_type IS ARRAY (0 TO 63) of std_logic_vector(31 DOWNTO 0);
...................
Thanks,
I know downto and to for one dimension array. I see the following definition in a file.
But for two dimension array, what happens?
...................
TYPE ram_type IS ARRAY (63 DOWNTO 0) of std_logic_vector(31 DOWNTO 0);
...................
I want to know what is the difference between the above one with:
...................
TYPE ram_type IS ARRAY (0 TO 63) of std_logic_vector(31 DOWNTO 0);
...................
Thanks,