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

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