PPT ½½¶óÀ̵å
- When assigning arrays, the following rules apply.1. The arrays must be the same type.2. The arrays must be the same length.3. The assignment is positional, from left to right!
signal My_BusA, My_BusB: bit_vector (3 downto 0 ) ;signal My_BusC, My_BusD: bit_vector ( 0 to 3 ) ;
My_BusB <= My_BusA ; . . . .My_BusC <= My_BusA ;