home *** CD-ROM | disk | FTP | other *** search
- { FOR HEAKIT-89 OR ZENITH-89 OR 90 }
- { USE THE #25 LINE }
- { WRITE BY TURBO PASCAL }
-
- program l25;
- type string80 = string[80] ;
-
- procedure L25(y: integer ; x :string80 ;t :boolean ) ;
- var
- ch : char ;
- count: integer ;
- begin
-
- write(^['y1');
- write(^[#'j'); write(^[,'x1');
- gotoxy(y,25);
- write(x);
- if t then
- begin
- count :=0 ;
- repeat
- gotoxy(y,25); count := count+1 ;
- t := not t ; if t then highvideo else lowvideo ;
- write(x); delay(500);
- until count = 6 ;
- end ;
- write(^['k');
- end;
-
- begin
- l25(20,'test #25 line',true);
- end.