home *** CD-ROM | disk | FTP | other *** search
- (* ------------------------------------------------------ *)
- (* TIMER.PAS *)
- (* Zeitanzeige zur Verwendung als Hintergrundtask *)
- (* ------------------------------------------------------ *)
- {$A+,B-,D-,E-,F-,I-,L-,N-,O-,R-,S-,V-}
-
- PROGRAM Timer;
-
- USES Crt, Dos;
-
- VAR
- h, m, s, s100: WORD;
-
- BEGIN
- ClrScr;
- REPEAT
- GetTime(h, m, s, s100);
- GotoXY(1,1);
- Write(h:2, ':', m:2, ':', s:2);
- UNTIL KeyPressed;
- END.
- (* ------------------------------------------------------ *)
- (* Ende von TIMER.PAS *)