home *** CD-ROM | disk | FTP | other *** search
- /* TIMER() - returns the number of seconds since
- midnight or system reset
-
- Copyright (c) 1984 by JMI Software Consultants, Inc.
- */
- #include "acom.h"
- #include "host.h"
-
-
- DOUBLE TIMER()
- {
- INTERN REGVAL inregs = {0x2c00, 0x0000, 0x0000, 0x0000, 0x0000};
- REGVAL r;
- LONG tm;
-
- intdos(&inregs, &r);
- tm = (r.cx >> 8) * 3600 + (r.cx & 0x00ff) * 60 + (r.dx >> 8);
- return ((double)(tm % 86400));
- }