home *** CD-ROM | disk | FTP | other *** search
/ Collection of Education / collectionofeducationcarat1997.iso / COMPUSCI / DATAREP.ZIP / RESET.PAS < prev    next >
Pascal/Delphi Source File  |  1990-02-22  |  279b  |  16 lines

  1. PROGRAM Reset (Input, Output);  {Resets terminal.}
  2. PROCEDURE Restore_scrolling;
  3.     BEGIN
  4.     WRITE (CHR(27), '[1;24r');
  5.     END;
  6.  
  7. PROCEDURE Clear_screen;
  8.     BEGIN
  9.     WRITE (CHR(27), '[f', CHR (27), '[2J');
  10.     END;
  11.  
  12. BEGIN
  13. Restore_scrolling;
  14. Clear_screen;
  15. END.
  16.