Hi,
I would like to know if there is a way to put a signal STD_LOGIC_VECTOR in an array of STD_LOGIC ??
Ex :
type X is array(7 downto 0) of STD_LOGIC;
signal Y : X;
signal A : STD_LOGIC_VECTOR(7 downto 0);
...
A <= Y; -- ou bien Y <= A;
thank you
I would like to know if there is a way to put a signal STD_LOGIC_VECTOR in an array of STD_LOGIC ??
Ex :
type X is array(7 downto 0) of STD_LOGIC;
signal Y : X;
signal A : STD_LOGIC_VECTOR(7 downto 0);
...
A <= Y; -- ou bien Y <= A;
thank you