
  { This type declaration contains information about
  { whether the controlware or the control module has
  { been written into memory and its location in memory.

  TYPE
    cmt$controller_location = ARRAY [cmt$controller_type] OF cmt$controller_location_type,

    cmt$controller_location_type = RECORD
      controlware_loaded: boolean,
      controlware_location_p: ^SEQ ( * ),
      controlware_rma_list_p: ^cmt$controller_rma_list,
      controlware_rma_list_size : integer,
      control_module_loaded: boolean,
      control_module_location_p: ^SEQ ( * ),
      control_module_rma_list_p: ^cmt$controller_rma_list,
      control_module_rma_list_size : integer,
    RECEND,

    cmt$controller_rma_list = ARRAY [ * ] OF mmt$rma_list_entry;

?? PUSH (LISTEXT := ON) ??
*copyc cmt$controller_type
*copyc mmt$rma_list
?? POP ??
