B
bharat1986@gmail.com
Guest
I have used a 2d array
type CRC is array(3 downto 0) of std_logic_vector(7 downto 0);
signal Frame_CRC : CRC;
now I want to access all the 32 bits in the Frame_CRC...
to assign a 32bit signal to that Frame_CRC..
How can I do it???
type CRC is array(3 downto 0) of std_logic_vector(7 downto 0);
signal Frame_CRC : CRC;
now I want to access all the 32 bits in the Frame_CRC...
to assign a 32bit signal to that Frame_CRC..
How can I do it???