xilinx1001
Member level 3
- Joined
- Apr 3, 2013
- Messages
- 60
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,286
- Activity points
- 1,781
Hi,
I need to give two 9 bit values(cm, cm2) to an array
cm and cm2 contains the two 9 bit values
I am doing something like this which is not working
TYPE matrix IS ARRAY (0 TO 2) OF STD_LOGIC_VECTOR(8 DOWNTO 0); --type definitions
SIGNAL x: matrix; --signal declarations
matrix(0)<= cm,
matrix(1)<=cm2
Can you suggest anything about this?
Regards
xilinx1001
I need to give two 9 bit values(cm, cm2) to an array
cm and cm2 contains the two 9 bit values
I am doing something like this which is not working
TYPE matrix IS ARRAY (0 TO 2) OF STD_LOGIC_VECTOR(8 DOWNTO 0); --type definitions
SIGNAL x: matrix; --signal declarations
matrix(0)<= cm,
matrix(1)<=cm2
Can you suggest anything about this?
Regards
xilinx1001