home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
COMPUSCI
/
DATAREP.ZIP
/
RESET.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1990-02-22
|
279b
|
16 lines
PROGRAM Reset (Input, Output); {Resets terminal.}
PROCEDURE Restore_scrolling;
BEGIN
WRITE (CHR(27), '[1;24r');
END;
PROCEDURE Clear_screen;
BEGIN
WRITE (CHR(27), '[f', CHR (27), '[2J');
END;
BEGIN
Restore_scrolling;
Clear_screen;
END.