home *** CD-ROM | disk | FTP | other *** search
- /*Program 6_2 - Read the Hardware Status
- by Stephen R. Davis, 1987
-
- Get the equivalent hardware status via BIOS request 0x11
- and interpret it according to the format:
-
- PPxGCCCxDDVVRR8I
-
- where
- PP - number of printers
- G - 1 -> game port present
- CCC- number of RS232 COM ports
- DD - number of disk drives - 1 (if I = 1)
- VV - video mode:
- 00 -> none or EGA
- 01 -> 40x25 CGA
- 10 -> 80x25 CGA
- 11 -> monochrome
- RR - system board RAM
- 8 - 0 -> 8087 present
- I - 1 -> booted from floppy
-
- This is a simple example of performing BIOS calls.
- */
-
- #include <stdio.h>
- #include <dos.h>
-
- /*prototype definitions*/
- int main (void);
- unsigned getstatus (void);
- void interpret (unsigned);
-
- /*define global data structures*/
- union REGS reg;
-
- /*Main - make the BIOS call to get status and then interpret it*/
- main ()
- {
- printf ("\nEquipment as reported by BIOS:\n");
- interpret (getstatus ());
- }
-
- /*Getstatus - get the equipment status via BIOS call 0x11*/
- unsigned getstatus (void)
- {
- int86 (0x11, ®, ®);
- return (unsigned)reg.x.ax;
- }
-
- /*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++;
- }
- }