home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pctchnqs / 1991 / number5 / tvtsr / tvstest.pas < prev    next >
Pascal/Delphi Source File  |  1991-03-30  |  563b  |  22 lines

  1. {
  2.   This is a very simple Turbo Vision TSR. It uses the unit TVSCREEN provided
  3.   by TurboPower Software, and the OPSWAP and OPSWAP1 units from TurboPower's
  4.   Object Professional or TSRs Made Easy libraries. Object Professional and
  5.   TSRs Made Easy are commercial libraries and may not be distributed. This
  6.   file, the TVSCREEN unit, and associated text may be distributed freely.
  7. }
  8. {$M 8192, 0, 655360}
  9.  
  10. program TVSTEST;
  11.  
  12. uses
  13.   Dos,
  14.   TvScreen,
  15.   Objects, Drivers, Memory, Views, Menus, App,
  16.   TvSTestM,
  17.   OpSwap;
  18.  
  19. begin
  20.   InitTvTest;
  21. end.
  22.