i use following vector array:
type arr1 is array(0 to 2) of STD_LOGIC_VECTOR(11 downto 0);
constant data:arr1:=("000000000100","000000111111","111111000000");
if i want to access bit 2 at vector data(0) it will be correct to write:
temp<=data(0,2); -- it will be 1?