home *** CD-ROM | disk | FTP | other *** search
- /*Program 7_2 - Delay Specified Number of Seconds (Direct Access)
- by Stephen R. Davis, 1987
-
- Many programs must delay for short periods of time. Often this
- is done by executing an "empty" FOR loop. Use the clock counter
- in lower memory as a more accurate clock.
- */
-
- #include <stdio.h>
-
- /*define a clock tick -> seconds macro*/
- #define GETIME (unsigned)(*timer / 18 - *timer / 1638)
-
- /*prototype definitions*/
- void main (void);
- unsigned getval (char *);
- void wait (unsigned);
-
- /*global data definitions*/
- volatile long far *timer = {(long far *)0x0040006c};
-
- /*Main - ask the user for length of time to delay (0 terminates)*/
- void main (void)
- {
- unsigned delay;
-
- printf ("This program simply delays the user specified number\n"
- "of seconds. Entering a zero terminates the program.\n"
- "\n"
- "Seconds are counted down to provide output so that\n"
- "the user can break out prematurely, if desired\n"
- "\n");
- for (;;) {
-
- /*get the specified delay and wait () that long*/
- if ((delay = getval ("Enter delay time [seconds]")) == 0)
- break;
-
- /*now call our wait procedure to perform the delay*/
- printf ("Start delay:\n");
- wait (delay);
- printf ("Finished\n");
- }
- }
-
- /*Getval - output a prompt and get an integer response*/
- unsigned getval (prompt)
- char *prompt;
- {
- unsigned retval;
-
- printf ("%s - ", prompt);
- scanf ("%d", &retval);
- return retval;
- }
-
- /*Wait - wait the specified length of time*/
- void wait (delay)
- unsigned delay;
- {
- unsigned previous, current;
-
- /*every time the time changes - decrement count*/
- previous = GETIME;
- for (;;) {
- if (previous != (current = GETIME)) {
- previous = current;
- if (!--delay)
- return;
-
- /*remove this print statement in actual use*/
- printf ("count - %d\n", delay);
- }
- }
- }