6.4 Indexed names

6.4.1 Definition

indexed_name ::=
    prefix ( expression { , expression } )

6.4.2 Examples

register_array(5)

The 5th element of the array register_array is addressed.

memory_cell( 1024, 7 )

The elements with the indices (1024,7) of the two-
dimensional array memory_cell are addressed.