home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / EVBGI2.ZIP / README < prev   
Encoding:
Text File  |  1989-07-31  |  3.9 KB  |  83 lines

  1.  
  2. ╒═══════════════════════════════════════════════════════════════════════╕
  3. │ README - This files describes the features and usage of the Everex    │
  4. │ BGI files for use with Turbo Pascal 5.0 and 5.5, and Turbo C 2.0.     │
  5. │                                                                       │
  6. │ 7-31-1989     v1.00    Initiial drivers release                        │
  7. │                                                                       │
  8. │ Kaymann L. Woo                                                        │
  9. ╘═══════════════════════════════════════════════════════════════════════╛
  10.  
  11.  
  12.  
  13. These 2 BGI drivers , EVRX16.BGI and EVRX256.BGI, support the Everex Extended 
  14. graphics modes on the Everex EVGA (EV-673) and Viewpoint (EV-678) card.  
  15. The driver EVRX16.BGI can be used with Everex Micro-Enhancer and Micro-Enhancer 
  16. Deluxe.  Note that in order to use the 800x600 16 color mode on the EV-657-01 and 
  17. EV-659-01, you must perform an InitGraph call with the driver value for VGA.  
  18. Otherwise the graphics library will assume that there are only two resolutions, 
  19. 640x480 and 752x410.  These drivers can be used with Turbo Pascal 5.0 and 5.5, 
  20. and Turbo C 2.0.
  21.  
  22. WARNING : This is purely a beta driver and some internal testing has been done, but     
  23.             some 'REAL LIFE' testing may be needed. EVEREX Systems isn't responsible 
  24.       for any losses due to this driver.
  25.       If you find any incompatibilities or bugs in these drivers, please leave
  26.       a message for me on the Everex Graphics BBS (415) 683-2924.
  27.  
  28. Files included:
  29.     EVRX16.BGI  - 16 color BGI driver for Turbo Pascal 5.0 and 5.5, 
  30.               and Turbo C 2.0
  31.     EVRX256.BGI - 256 color BGI driver for Turbo Pascal 5.0 and 5.5, 
  32.               and Turbo C 2.0
  33.     README.DOC
  34.  
  35. EVRX16.BGI:
  36.     Turbo Modes (EV-657/B/01, EV-659/A/01, and EV-673):
  37.         00h : 640 x 480 16 color on multi-frequency or PS/2 monitor
  38.         01h : 752 x 410 16 color on multi-frequency monitor
  39.         02h : 800 x 600 16 color on multi-frequency monitor
  40.     
  41.     Turbo Modes (EV-678):
  42.         00h : 640 x 480 16 color on multi-frequency or PS/2 monitor
  43.         01h : 800 x 600 16 color on multi-frequency monitor
  44.         02h : 1024 x 768 16 color on multi-frequency monitor (512K on EV-678)
  45.     
  46.     Usage:
  47.         To use EVRX16.BGI with Turbo Pascal or Turbo C, either
  48.         rename it to the file name EGAVGA.BGI (Make sure to keep 
  49.         a backup of the original Borland EGAVGA.BGI) or rewrite
  50.         your code to load in the driver and register it using
  51.         RegisterBGIDriver.
  52.  
  53. EVRX256.BGI:
  54.     Turbo Modes (EV-673):
  55.         00h : 640 x 350 256 color on multi-frequency monitor (64 on digital)
  56.         01h : 640 x 400 256 color on multi-frequency monitor (64 on digital)
  57.         02h : 512 x 480 256 color on multi-frequency monitor (64 on digital)
  58.  
  59.     Turbo Modes (EV-678):
  60.         00h : 640 x 350 256 color on multi-frequency monitor (64 on digital)
  61.         01h : 640 x 400 256 color on multi-frequency monitor (64 on digital)
  62.         02h : 640 x 480 256 color on multi-frequency monitor (64 on digital) (512K on EV-678 only)
  63.     03h : 800 x 600 256 color on multi-frequency monitor (64 on digital) (512K on EV-678 only)
  64.  
  65.     Constraints:
  66.         2) SetBkColor, SetPalette, and SetAllPalette are not supported
  67.            because the EGA compatible palette is not active in 256 color
  68.            mode.  Changing the palette must be done by using SETRGBPALETTE 
  69.        or modifying the color lookup table in the Digital-to-Analog 
  70.        Converter (DAC). Get the Everex Technical Reference Manual 
  71.        for more information.
  72.            
  73.     Usage:
  74.         To use EVRX256.BGI with Turbo Pascal or Turbo C, either
  75.         rename it to the file name EGAVGA.BGI (Make sure to keep 
  76.         a backup of the original Borland EGAVGA.BGI) or rewrite
  77.         your code to load in the driver and register it using
  78.         RegisterBGIDriver.
  79.  
  80.  
  81.  
  82.  
  83.