A
a_Conan
Guest
Hi everyone,
Suppose I have this code
type AR is array(6 downto 0, 6 downto 0) of unsigned(7 downto 0);
type FR is array(6 downto 0) of unsigned(7 downto 0);
signal AR_1 : AR;
signal FR_1 : FR;
I try to assign a full row from AR_1 to FR_1 like as aslice:
FR_1 <= AR_1(0, 6 downto 0);
but it doesn't work
Can anyone help me please?
Suppose I have this code
type AR is array(6 downto 0, 6 downto 0) of unsigned(7 downto 0);
type FR is array(6 downto 0) of unsigned(7 downto 0);
signal AR_1 : AR;
signal FR_1 : FR;
I try to assign a full row from AR_1 to FR_1 like as aslice:
FR_1 <= AR_1(0, 6 downto 0);
but it doesn't work
Can anyone help me please?