home *** CD-ROM | disk | FTP | other *** search
- Program MainProg;
- { Sample program to demonstrate the order of units within the }
- { OVR filethat is produced by Turbo Pascal. }
-
- {$F+}
-
- Uses
- Overlay, One, Two, Three; { Include the necessary units }
-
- { Overlay each unit used in the application }
-
- {$O A}
- {$O Three}
- {$O Two}
- {$O One}
-
- Begin
- OvrInit( 'MAIN.OVR' ); { Initialize the Overlay Manager }
- One1; { Make sure each unit is linked }
- Two1;
- Three1;
- End.