home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TP_ADV.ZIP / LIST0816.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1989-07-31  |  466 b   |  18 lines

  1. Program Test;
  2. { This is a simple test program that links in the unit listed }
  3. { above.  Its sole purpose in life is to link in the          }
  4. { signature unit.                                             }
  5.  
  6. {$O+,F+}
  7.  
  8. Uses
  9.   Overlay, List815;
  10.  
  11. {$O List815}                  { Overlay the unit named        }
  12.  
  13. Begin
  14.   Ovrinit( 'List8-16.OVR' );  { Initialize Overlay Manager    }
  15.   One;                        { Call the interfaced procedure }
  16. End.
  17.  
  18.