home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG9_2B.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  3.1 KB  |  132 lines

  1. /*Program 9_2b -- Display a clock on the screen (Interrupt stealer)
  2.     by Stephen R. Davis, 1987
  3.  
  4.   This program should be compiled under the TINY memory
  5.   model,  and may then converted into .COM file using the command:
  6.  
  7.   EXE2BIN PRG9_2B.EXE PRG9_2B.COM
  8.  
  9.   It can also be executed as an .EXE file.  Do not execute from IDE!
  10.  
  11.   This version makes no effort to get along with other interrupt
  12.   routines.
  13.   (It may be necessary to run this program with the help of
  14.    SSTACK.COM.  See text for details.)
  15. */
  16.  
  17. #include <stdio.h>
  18. #include <dos.h>
  19. #include <stdlib.h>
  20. #include <process.h>
  21.  
  22. #ifndef __TINY__
  23.      #error Should use TINY compilation model
  24. #endif
  25. #define vect 0x1c
  26.  
  27. /*first the prototyping definitions*/
  28.  
  29. void interrupt clock (void);
  30. void display (int, int, int);
  31. void out (char *, int, int);
  32. void init (void);
  33.  
  34. /*define our data structures*/
  35.  
  36. union {
  37.        long ltime;
  38.        int stime [2];
  39.       } p;
  40. struct REGS regs;
  41. int prevtime, time, minute, hour;
  42. char buffer [6];
  43. int far *screen;
  44.  
  45. char digits [] = {"0123456789"};
  46.  
  47. /*Clock - grab the interrupt and provide the function*/
  48. void interrupt clock (void)
  49. {
  50.      /*get the current time using the BIOS call*/
  51.      regs.h.ah = 0;
  52.      int86 (0x1a, ®s, ®s);
  53.      p.stime [0] = regs.x.dx;
  54.      p.stime [1] = regs.x.cx;
  55.      time = (int)(p.ltime / (long)1092);
  56.  
  57.      /*now display the current time in 24 hour format*/
  58.      display (time, 0, 75);
  59.  
  60.      /*then display the delta*/
  61.      if (prevtime == -1)
  62.           prevtime = time;
  63.      if ((time -= prevtime) < 0)
  64.           time += (24 * 60);
  65.      display (time, 1, 75);
  66. }
  67.  
  68. /*Display - put a time on the screen in the position indicated.
  69.             Remember we can't do any DOS calls here.*/
  70. void display (number, y, x)
  71.      int number, x, y;
  72. {
  73.      hour = number / 60;
  74.      minute = _DX;
  75.  
  76.      /*stuff this into an ascii buffer for output*/
  77.      buffer [0] = digits [hour / 10];
  78.      buffer [1] = digits [hour % 10];
  79.      buffer [2] = ':';
  80.      buffer [3] = digits [minute / 10];
  81.      buffer [4] = digits [minute % 10];
  82.      buffer [5] = '\0';
  83.  
  84.      out (buffer, y, x);
  85. }
  86.  
  87. /*Out - out a string onto the screen w/o using system call*/
  88. void out (buffer, y, x)
  89.      char *buffer;
  90.      int y, x;
  91. {
  92.      int far *scrptr;
  93.  
  94.      scrptr = screen + (y * 80 + x);
  95.      while (*buffer)
  96.           *scrptr++ = 0x1700 + *buffer++;
  97. }
  98.  
  99. /*Main - install the above routine.*/
  100. main ()
  101. {
  102.      init ();
  103.      setvect (vect, clock);
  104.      printf ("Clock installed in interrupt %2x\n", vect);
  105.      keep (0, 0x1000);
  106. }
  107.  
  108. /*Init - set the screen address and clear the screen*/
  109. void init ()
  110. {
  111.     #define mono (int far *)0xb0000000 /*for mono displays...*/
  112.     #define cga  (int far *)0xb8000000 /*...for ega and cga*/
  113.     int mode;
  114.  
  115.     prevtime = -1;
  116.  
  117.     regs.h.ah = 0x0f;
  118.     int86 (0x10, ®s, ®s);
  119.     mode = regs.h.al;
  120.     if (regs.h.ah != 80)               /*fixed to 80 columns*/
  121.          abort ();
  122.  
  123.     if (mode == 7)
  124.          screen = mono;
  125.     else
  126.          if (mode == 3 || mode == 2)
  127.               screen = cga;
  128.          else
  129.               abort ();
  130. }
  131.  
  132.