home *** CD-ROM | disk | FTP | other *** search
- /*Program 6_6 - Detect presence of Enhanced Graphics Adapter
- by Stephen R. Davis, 1987
-
- Check for the presence of the EGA by invoking one of the EGA
- BIOS subfunctions. The normal CGA BIOS will treat this as a
- No-Operation, returning to us the registers we supplied.
- */
-
- #include <stdio.h>
- #include <dos.h>
- #include <process.h>
-
- /*prototyping definitions*/
- void main (void);
-
- /*define global data*/
- union REGS reg;
-
- char *colorvals [] = {"color", "monochrome"};
- char *memvals [] = {"64k", "128k", "192k", "256k"};
- char *switchvals [] = {
- /*0*/ "monochrome w/ 40x25 EGA secondary",
- /*1*/ "EGA emulation mode w/ monochrome secondary",
- /*2*/ "40x25 CGA w/ monochrome EGA secondary",
- /*3*/ "illegal value",
- /*4*/ "monochrome w/ EGA emulation mode secondary",
- /*5*/ "monochrome EGA w/ 40x25 CGA secondary",
- /*6*/ "40x25 EGA w/ monochrome secondary",
- /*7*/ "illegal value",
- /*8*/ "monochrome w/ 80x25 EGA secondary",
- /*9*/ "hi res EGA w/ monochrome secondary",
- /*a*/ "80x25 CGA w/ monochrome EGA secondary",
- /*b*/ "illegal value",
- /*c*/ "monochrome w/ hi res EGA secondary",
- /*d*/ "monochrome EGA w/ 80x25 CGA secondary",
- /*e*/ "80x25 EGA w/ monochrome secondary",
- /*f*/ "illegal value"};
-
- /*Main - Test for EGA. If present, display memory and switch
- settings.*/
- void main (void)
- {
- reg.h.ah = 0x12;
- reg.h.bl = 0x10;
- int86 (0x10, ®, ®);
- if (reg.h.bl > 3) { /*illegal value implies no EGA present*/
- printf ("No EGA present!\n");
- exit (1);
- }
- /*dump out all of the other info*/
- printf ("EGA attached in %s mode with %s memory installed\n",
- colorvals [reg.h.bh],
- memvals [reg.h.bl]);
- printf ("Switch settings indicate: %s\n", switchvals [reg.h.cl]);
- }