Table of Contents

Range names

Definition

slice_name

prefix ( discrete_range )

Example

Different slices are addressed.

SIGNAL r15 : bit_vector( 0 TO 31 ) ;
CONSTANT data : bit_vector(31 DOWNTO 0);
 
r15( 0 TO 7 ) ;
data( 24 DOWNTO 1 ) ;
data( 24 TO 25 ) ;