home *** CD-ROM | disk | FTP | other *** search
- /*Program 7_1 - Read the Hardware Status (Direct Access)
- by Stephen R. Davis, 1987
-
- Get the equivalent hardware status by directly addressing
- the keyboard status word in lower memory. See Prg6_2 for
- interpretation of status word.
- */
-
- #include <stdio.h>
- #include <dos.h>
-
- /*prototype definitions*/
- int main (void);
- void interpret (unsigned);
-
- /*define global variables*/
-
- unsigned far *equip_flag = {(unsigned far *)0x00400010};
-
- /*Main - make the BIOS call to get status and then interpret it*/
- main ()
- {
- printf ("\nEquipment as reported by 'equip_flag' variable:\n");
- interpret (*equip_flag);
- }
-
- /*Display routines which we need for Interpret()*/
- void dispnum (i)
- unsigned i;
- {
- printf ("%d", i);
- }
-
- void dispdsk (i)
- unsigned i;
- {
- printf ("%d", i + 1);
- }
-
- char *modes [] = {"No monitor or EGA attached",
- "Color/Graphics in 40 x 25 mode",
- "Color/Graphics in 80 x 25 mode",
- "Monochrome monitor"};
- void dispmode (i)
- unsigned i;
- {
- printf (modes [i]);
- }
-
- char *mems [] = {"16k", "32k", "48k", "64k"};
- void dispmem (i)
- unsigned i;
- {
- printf (mems [i]);
- }
-
- char *yn [] = {"Yes", "No"};
- void dispyn (i)
- unsigned i;
- {
- printf (yn [i]);
- }
- void dispny (i)
- unsigned i;
- {
- printf (yn [1 - i]);
- }
-
- /*Interpret - interpret the IBM status word*/
- struct DICT {
- unsigned mask;
- unsigned shiftvalue;
- char *string;
- void (*disp) (unsigned);
- } dictionary [] = {{0xc000, 14, "Printers = ", dispnum},
- {0x1000, 12, "Game I/O ports = ", dispnum},
- {0x0e00, 9, "Serial ports = ", dispnum},
- {0x00c0, 6, "Disk drives = ", dispdsk},
- {0x0030, 4, "Video mode = ", dispmode},
- {0x000c, 2, "System board RAM = ", dispmem},
- {0x0002, 1, "8087/287 NDP = ", dispny},
- {0x0001, 0, "IPL from diskette = ", dispyn},
- {0x0000, 0, "Terminator", dispnum}};
- void interpret (value)
- unsigned value;
- {
- unsigned maskvalue;
- struct DICT *ptr;
-
- ptr = dictionary;
- while (ptr -> mask) {
- maskvalue = value & ptr -> mask;
- maskvalue >>= ptr -> shiftvalue;
- printf (ptr -> string);
- (*(ptr -> disp)) (maskvalue);
- printf ("\n");
- ptr++;
- }
- }