  PROCEDURE [INLINE] dmp$get_level_2_ptr
    (    p_offset: ^amt$file_byte_address;
     VAR ptr_level_2: ^dmt$level_2_table);

?? PUSH (LISTEXT := ON) ??

    IF p_offset^ <> 0 THEN
      ptr_level_2 := #ADDRESS (1, #SEGMENT (p_offset), p_offset^);
    ELSE
      ptr_level_2 := NIL;
    IFEND;

  PROCEND dmp$get_level_2_ptr;

*copyc amt$file_byte_address
*copyc dmt$sparse_allocation
?? POP ??
