;****************************************************************************
;*
;*                        The Universal VESA VBE
;*
;*                  Copyright (C) 1993 Kendall Bennett.
;*                          All rights reserved.
;*
;* Filename:    $RCSfile: chipsets.equ $
;* Version:     $Revision: 1.1 $
;*
;* Language:    80386 Assembler
;* Environment: IBM PC (MS DOS)
;*
;* Description: All the equates and = directives used by the assembly
;*              language routines for the Universal VESA VBE.
;*
;* $Id: chipsets.equ 1.1 1993/09/19 01:26:40 kjb release $
;*
;* Revision History:
;* -----------------
;*
;* $Log: chipsets.equ $
;* Revision 1.1  1993/09/19  01:26:40  kjb
;* Initial revision
;*
;****************************************************************************

; SuperVGA chipsets supported

grSVGA_ATI          =   0   ; ATI Technologies SuperVGA
grSVGA_AHEAD        =   1   ; AHEAD SuperVGA
grSVGA_CHIPS        =   2   ; Chips & Technologies SuperVGA
grSVGA_EVEREX       =   3   ; Everex SuperVGA
grSVGA_GENOA        =   4   ; Genoa Systems SuperVGA (GVGA chipset)
grSVGA_OAKTECH      =   5   ; OAK Technologies SuperVGA
grSVGA_PARADISE     =   6   ; Paradise SuperVGA
grSVGA_TRIDENT      =   7   ; Trident 8800 SuperVGA
grSVGA_VIDEO7       =   8   ; Video7 SuperVGA
grSVGA_TSENG        =   9   ; Tseng Labs SuperVGA
grSVGA_NCR          =   10  ; NCR 77C22E SuperVGA
grSVGA_S3           =   11  ; S3 SuperVGA
grSVGA_ACUMOS       =   12  ; Acumos SuperVGA
grSVGA_AL2101       =   13  ; Advance Logic AL2101 SuperVGA
grSVGA_MXIC         =   14  ; MXIC 68010 SuperVGA
grSVGA_P2000        =   15  ; Primus 2000 SuperVGA
grSVGA_RT3106       =   16  ; RealTek 3106 SuperVGA
grSVGA_CIRRUS       =   17  ; Cirrus SuperVGA
grSVGA_NONE         =   -1  ; Not a supported SuperVGA chipset

; Video DAC types

grVGADAC            =   0   ; Normal VGA DAC
grHCDAC             =   1   ; HiColor 15 bit DAC
grHC2DAC            =   2   ; HiColor 16 bit DAC
grTCDAC             =   3   ; TrueColor 24 bit DAC

; Number of colors is current video mode

gr16Color           =   0   ; 16 color video mode
gr256Color          =   1   ; 256 color video mode
gr32kColor          =   2   ; 32k color video mode
gr64kColor          =   3   ; 64k color video mode
gr16mColor          =   4   ; 16m color video mode

; Boolean values

true                =   1
false               =   0
