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

  1. /*Program 7_1 - Read the Hardware Status (Direct Access)
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Get the equivalent hardware status by directly addressing
  5.   the keyboard status word in lower memory.  See Prg6_2 for
  6.   interpretation of status word.
  7. */
  8.  
  9. #include <stdio.h>
  10. #include <dos.h>
  11.  
  12. /*prototype definitions*/
  13. int main (void);
  14. void interpret (unsigned);
  15.  
  16. /*define global variables*/
  17.  
  18. unsigned far *equip_flag = {(unsigned far *)0x00400010};
  19.  
  20. /*Main - make the BIOS call to get status and then interpret it*/
  21. main ()
  22. {
  23.      printf ("\nEquipment as reported by 'equip_flag' variable:\n");
  24.      interpret (*equip_flag);
  25. }
  26.  
  27. /*Display routines which we need for Interpret()*/
  28. void dispnum (i)
  29.      unsigned i;
  30. {
  31.      printf ("%d", i);
  32. }
  33.  
  34. void dispdsk (i)
  35.      unsigned i;
  36. {
  37.      printf ("%d", i + 1);
  38. }
  39.  
  40. char *modes [] = {"No monitor or EGA attached",
  41.                   "Color/Graphics in 40 x 25 mode",
  42.                   "Color/Graphics in 80 x 25 mode",
  43.                   "Monochrome monitor"};
  44. void dispmode (i)
  45.      unsigned i;
  46. {
  47.      printf (modes [i]);
  48. }
  49.  
  50. char *mems [] = {"16k", "32k", "48k", "64k"};
  51. void dispmem (i)
  52.      unsigned i;
  53. {
  54.      printf (mems [i]);
  55. }
  56.  
  57. char *yn [] = {"Yes", "No"};
  58. void dispyn (i)
  59.      unsigned i;
  60. {
  61.      printf (yn [i]);
  62. }
  63. void dispny (i)
  64.      unsigned i;
  65. {
  66.      printf (yn [1 - i]);
  67. }
  68.  
  69. /*Interpret - interpret the IBM status word*/
  70. struct DICT {
  71.      unsigned mask;
  72.      unsigned shiftvalue;
  73.      char *string;
  74.      void (*disp) (unsigned);
  75.      } dictionary [] = {{0xc000, 14, "Printers =          ", dispnum},
  76.                         {0x1000, 12, "Game I/O ports =    ", dispnum},
  77.                         {0x0e00,  9, "Serial ports =      ", dispnum},
  78.                         {0x00c0,  6, "Disk drives =       ", dispdsk},
  79.                         {0x0030,  4, "Video mode =        ", dispmode},
  80.                         {0x000c,  2, "System board RAM =  ", dispmem},
  81.                         {0x0002,  1, "8087/287 NDP =      ", dispny},
  82.                         {0x0001,  0, "IPL from diskette = ", dispyn},
  83.                         {0x0000,  0, "Terminator", dispnum}};
  84. void interpret (value)
  85.      unsigned value;
  86. {
  87.      unsigned maskvalue;
  88.      struct DICT *ptr;
  89.  
  90.      ptr = dictionary;
  91.      while (ptr -> mask) {
  92.           maskvalue = value & ptr -> mask;
  93.           maskvalue >>= ptr -> shiftvalue;
  94.           printf (ptr -> string);
  95.           (*(ptr -> disp)) (maskvalue);
  96.           printf ("\n");
  97.           ptr++;
  98.      }
  99. }