home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / C-ASM_VI.ARJ / PROGC.ZIP / PROGC021.C < prev    next >
Text File  |  1988-04-10  |  411b  |  11 lines

  1.  
  2. /************************************************************************/
  3. /* Fetch current mode using BIOS data area constant at 0000:0449        */
  4. /************************************************************************/
  5.  
  6. print_data_mode()
  7.         {
  8.         char far        *p = 0;         /* Declare far pointer          */
  9.         printf("\nCurrent video mode is %x hex", p[0x449]);
  10.         }
  11.