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

  1. /*Program 6_6 - Detect presence of Enhanced Graphics Adapter
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Check for the presence of the EGA by invoking one of the EGA
  5.   BIOS subfunctions.  The normal CGA BIOS will treat this as a
  6.   No-Operation, returning to us the registers we supplied.
  7. */
  8.  
  9. #include <stdio.h>
  10. #include <dos.h>
  11. #include <process.h>
  12.  
  13. /*prototyping definitions*/
  14. void main (void);
  15.  
  16. /*define global data*/
  17. union REGS reg;
  18.  
  19. char *colorvals [] = {"color", "monochrome"};
  20. char *memvals [] = {"64k", "128k", "192k", "256k"};
  21. char *switchvals [] = {
  22.                /*0*/   "monochrome w/ 40x25 EGA secondary",
  23.                /*1*/   "EGA emulation mode w/ monochrome secondary",
  24.                /*2*/   "40x25 CGA w/ monochrome EGA secondary",
  25.                /*3*/   "illegal value",
  26.                /*4*/   "monochrome w/ EGA emulation mode secondary",
  27.                /*5*/   "monochrome EGA w/ 40x25 CGA secondary",
  28.                /*6*/   "40x25 EGA w/ monochrome secondary",
  29.                /*7*/   "illegal value",
  30.                /*8*/   "monochrome w/ 80x25 EGA secondary",
  31.                /*9*/   "hi res EGA w/ monochrome secondary",
  32.                /*a*/   "80x25 CGA w/ monochrome EGA secondary",
  33.                /*b*/   "illegal value",
  34.                /*c*/   "monochrome w/ hi res EGA secondary",
  35.                /*d*/   "monochrome EGA w/ 80x25 CGA secondary",
  36.                /*e*/   "80x25 EGA w/ monochrome secondary",
  37.                /*f*/   "illegal value"};
  38.  
  39. /*Main - Test for EGA.  If present, display memory and switch
  40.          settings.*/
  41. void main (void)
  42. {
  43.      reg.h.ah = 0x12;
  44.      reg.h.bl = 0x10;
  45.      int86 (0x10, ®, ®);
  46.      if (reg.h.bl > 3) {     /*illegal value implies no EGA present*/
  47.           printf ("No EGA present!\n");
  48.           exit (1);
  49.      }
  50.                              /*dump out all of the other info*/
  51.      printf ("EGA attached in %s mode with %s memory installed\n",
  52.                      colorvals [reg.h.bh],
  53.                      memvals [reg.h.bl]);
  54.      printf ("Switch settings indicate: %s\n", switchvals [reg.h.cl]);
  55. }
  56.