home *** CD-ROM | disk | FTP | other *** search
- /*Program 9_2c -- Display a clock on the screen (Interrupt borrower)
- by Stephen R. Davis, 1987
-
- This program should be compiled under the TINY memory
- model and may then converted into .COM file using the command:
-
- EXE2BIN PRG9_2C.EXE PRG9_2C.COM
-
- It can be executed as an .EXE file. Do not execute from IDE!
-
- This version of the clock routine tries a little harder to
- get along with other timer interrupt routines by passing control
- along to them...it borrows the interrupt.
- (It may be necessary to use SSTACK.COM to execute this program.
- See text for details.)
- */
-
- #include <stdio.h>
- #include <dos.h>
- #include <stdlib.h>
- #include <process.h>
-
- #ifndef __TINY__
- #error Should use TINY compilation model
- #endif
- #define vect 0x1c
-
- /*first the prototyping definitions*/
-
- void interrupt clock (void);
- void display (int, int, int);
- void out (char *, int, int);
- void init (void);
-
- /*define our data structures*/
-
- union {
- long ltime;
- int stime [2];
- } p;
- struct REGS regs;
- void interrupt (*old)(void);
- int prevtime, time, minute, hour;
- char buffer [6];
- int far *screen;
-
- char digits [] = {"0123456789"};
-
- /*Clock - grab the interrupt and provide the function*/
- void interrupt clock (void)
- {
- /*get the current time using the BIOS call*/
- regs.h.ah = 0;
- int86 (0x1a, ®s, ®s);
- p.stime [0] = regs.x.dx;
- p.stime [1] = regs.x.cx;
- time = (int)(p.ltime / (long)1092);
-
- /*now display the current time in 24 hour format*/
- display (time, 0, 75);
-
- /*then display the delta*/
- if (prevtime == -1)
- prevtime = time;
- if ((time -= prevtime) < 0)
- time += (24 * 60);
- display (time, 1, 75);
-
- /*pass control on to the next interrupt routine*/
- (*old)();
- }
-
- /*Display - put a time on the screen in the position indicated.
- Remember we can't do any DOS calls here.*/
- void display (number, y, x)
- int number, x, y;
- {
- hour = number / 60;
- minute = _DX;
-
- /*stuff this into an ascii buffer for output*/
- buffer [0] = digits [hour / 10];
- buffer [1] = digits [hour % 10];
- buffer [2] = ':';
- buffer [3] = digits [minute / 10];
- buffer [4] = digits [minute % 10];
- buffer [5] = '\0';
-
- out (buffer, y, x);
- }
-
- /*Out - out a string onto the screen w/o using system call*/
- void out (buffer, y, x)
- char *buffer;
- int y, x;
- {
- int far *scrptr;
-
- scrptr = screen + (y * 80 + x);
- while (*buffer)
- *scrptr++ = 0x1700 + *buffer++;
- }
-
- /*Main - install the above routine.*/
- main ()
- {
- init ();
- old = getvect (vect);
- setvect (vect, clock);
- printf ("Clock intalled into vector %2x\n", vect);
- keep (0, 0x1000);
- }
-
- /*Init - set the screen address and clear the screen*/
- void init ()
- {
- #define mono (int far *)0xb0000000 /*for mono displays...*/
- #define cga (int far *)0xb8000000 /*...for ega and cga*/
- int mode;
-
- prevtime = -1;
-
- regs.h.ah = 0x0f;
- int86 (0x10, ®s, ®s);
- mode = regs.h.al;
- if (regs.h.ah != 80) /*fixed to 80 columns*/
- abort ();
-
- if (mode == 7)
- screen = mono;
- else
- if (mode == 3 || mode == 2)
- screen = cga;
- else
- abort ();
- }
-