--
subtype ram_addr is integer range 0 to 63 ;
type ram is array ( ram_addr ) of mem_address
;
initialize : for i in 0 to 63 loop
variable status : word := ( 0 => 1, 1 => 0, 2 => 0, ... --named association
variable status : word := ( 0 => 1, 1 to 7 => 0 ); -- also named
variable status : word := ( 1, others => 0 ); --positional