home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / doc / graphdoc / everex.txt < prev    next >
Text File  |  1994-01-18  |  6KB  |  163 lines

  1.  Everex Micro Enhancer.
  2.  
  3.  
  4.   Ev236  UltraGraphics   (Trident chip).
  5.   Ev620  Vision VGA      (Trident chip).
  6.   Ev629  Viewpoint TC    (Tseng 4000 chip with special DAC 16M colors).
  7.   Ev673  EVGA            (Trident chip).
  8.   Ev678  Viewpoint       (Trident chip).
  9.  
  10.  
  11.   3C2h (W)): Misc Output Register
  12.     bit 5  Bit 1 of Bank No.
  13.   Note: this register can be read from port 3CCh.
  14.  
  15.  
  16.   3C4h index  8  (R/W):
  17.     bit 7  Bit 0 of Bank no.
  18.  
  19.  
  20.   Bank switching.
  21.  
  22.   Everex uses a two bit bank no. with bit 0 in 3C4h index 8 bit 7
  23.   and bit 1 in 3C2h bit 5.
  24.  
  25.  
  26.  
  27.   ID Everex Micro Enhancer:
  28.  
  29.   RP.BX:=0;
  30.   vio($7000):
  31.   if RP.AL=$70 then
  32.   begin
  33.     NR:=RP.DX SHR 4;
  34.     case NR of
  35.       $236,$620,$673,$678:TRIDENT;
  36.       $629:Tseng_4000;
  37.     else EVEREX Ev(Nr)
  38.     end;
  39.   end;
  40.  
  41.  
  42.   BIOS extensions:
  43.  
  44. ----------100070-----------------------------
  45. INT 10 - VIDEO - Everex Micro Enhancer EGA/Viewpoint VGA - EXTENDED MODE SET
  46.         AX = 0070h
  47.         BL = mode (see below)
  48.  
  49. Values for video mode:
  50.      text/ text   pixel pixel    colors disp scrn monitor  adapter
  51.      grph  resol  box   resoltn         page addr
  52.  00h = G                640x480   16              multsync EGA,VGA
  53.  01h = G                752x410   16              multsync EGA,VGA
  54.  02h = G                800x600   16              multsync EGA,VGA
  55.  03h = T   80x34                                  multsync EGA,VGA
  56.  04h = T   80x60                                  multsync EGA,VGA
  57.  05h = T   94x29                                  multsync EGA only
  58.  06h = T   94x51                                  multsync EGA only
  59.  07h = T  100x43  8x14            16                       VGA only
  60.  08h = T  100x75  8x8             16                       VGA only
  61.  09h = T   80x44                                  EGA      EGA only
  62.  0Ah = T  132x25                                  EGA      EGA,VGA
  63.  0Bh = T  132x44                                  EGA      EGA,VGA
  64.  0Ch = T  132x25                                  CGA      EGA only
  65.  0Dh = T   80x44                                  mono     EGA only
  66.  0Eh = T  132x25                                  mono
  67.  0Fh = T  132x44                                  mono
  68.  10h =      reserved
  69.  11h = G                1280x350  4               EGA only
  70.  12h = G                1280x600  4               EGA only
  71.  13h = G                640x350   256             EGA only
  72.  14h = G                640x400   256
  73.  15h = G                512x480   256
  74.  16h = T   80x30  8x16            256             VGA only
  75.  18h = T  100x27  8x16            16              VGA only
  76.  20h = G                1024x768  16              Everex 629,678
  77.  21h = T  160x64  8x16  1280x1024 16              1MB VGA only
  78.  30h = G                640x480   256             Everex 629,678
  79.  31h = G                800x600   256             Everex 629,678
  80.  32h = G  128x48  8x16  1024x768  256             1MB VGA only
  81.  40h = T  132x30  8x16            16              VGA only
  82.  50h = T  132x32  8x16            mono            VGA only
  83.  62h = G   40x25  8x8   320x200   32K             Vwpt TC (EV629)
  84.  70h = G   64x30  8x16  512x480   32K             Viewpoint TC
  85.  71h = G   80x30  8x16  640x480   32K             Viewpoint TC
  86.  76h = G   64x30  8x16  512x480   16M             Viewpoint TC
  87.  77h = G   80x30  8x16  640x480   16M             Viewpoint TC
  88. ----------107000BX0000-----------------------
  89. INT 10 - Everex Extended Video BIOS - RETURN EMULATION STATUS
  90.         AX = 7000h
  91.         BX = 0000h
  92. Return: CL = monitor type
  93.              00h mono
  94.              01h CGA
  95.              02h EGA
  96.              03h digital multifrequency
  97.              04h IBM PS/2 
  98.              05h IBM 8514
  99.              06h SuperVGA
  100.              07h analog multifrequency
  101.              08h super multifrequency
  102.         CH = feature bits
  103.              bits 7,6: 00 = 256K memory
  104.                        01 = 512K memory
  105.                        10 = 1024K
  106.                        11 = 2048K memory
  107.              bit 5:    special oscillator present
  108.              bit 4:    VGA protect enabled
  109.              bit 0:    6845 emulation
  110.         DX = video board info
  111.              bits 4-15: board ID model
  112.              bits 0-3:  board ID revision
  113.         DI = BCD BIOS version number
  114. ----------107000BX0004-----------------------
  115. INT 10 - Everex Extended Video BIOS - GET PAGING FUNCTION POINTER FOR CUR MODE
  116.         AX = 7000h
  117.         BX = 0004h
  118. Return: ES:DI -> FAR paging function (call with DL = page to set)
  119. Note:   the word preceding ES:DI is the length of the function in bytes, and
  120.         the last byte of the function is a FAR return instruction.
  121. ----------107000BX0005-----------------------
  122. INT 10 - Everex Extended Video BIOS - GET SUPPORTED MODE INFO
  123.         AX = 7000h
  124.         BX = 0005h
  125.         CL = maximum number of modes to get info for
  126.         CH = mode type to get info for (see below)
  127.         DL = monitor type to get info for
  128.         ES:DI -> buffer for mode info (see below)
  129. Return: CL = total number of modes fitting criteria
  130.         CH = size of each info record
  131.  
  132. Values for mode type:
  133.  00h all modes
  134.  01h monochrome text modes
  135.  02h color text modes
  136.  03h four-color CGA graphics modes
  137.  04h two-color CGA graphics modes
  138.  05h 16-color graphics modes
  139.  06h 256-color graphics modes
  140.  
  141. Format of mode information record:
  142. Offset Size  Description
  143.  00h   BYTE  mode number (bit 7 set if extended mode)
  144.  01h   BYTE  mode type (see above)
  145.  02h   BYTE  info bits
  146.              bits 7,6 reserved
  147.                     5 monochrome mode
  148.                     4 interlaced display
  149.                     3 requires special oscillator
  150.                   2,1 memory required 
  151.                       00 = 256K
  152.                       01 = 512K
  153.                       10 = 1024K 
  154.                       11 = 2048K
  155.                     0 reserved
  156.  03h   BYTE  font height
  157.  04h   BYTE  text columns on screen
  158.  05h   BYTE  text rows on screen
  159.  06h   WORD  number of scan lines
  160.  08h   BYTE  color information
  161.              bits 7-4 reserved
  162.                   3-0 bits per pixel
  163.