echo off
CLS
echo .
echo This batch file will set up SoundFX-Blast for the graphics
echo adapter for the card installed on your machine.
if [%1] == [vga] goto gotvga
if [%1] == [VGA] goto gotvga
if [%1] == [ega] goto gotega
if [%1] == [EGA] goto gotega
if [%1] == [cga] goto gotcga
if [%1] == [CGA] goto gotcga
if [%1] == [hga] goto gothga
if [%1] == [HGA] goto gothga
if [%1] == [mcg] goto gotmcg
if [%1] == [MCG] goto gotmcg
if [%1] == [att] goto gotatt
if [%1] == [ATT] goto gotatt
pause
CLS
echo .
Echo       Display Devices Supported
echo .
echo If you are using one of these displays/cards:
echo .
echo IBM Video Gate Array            IBM Corp.
echo EPIC Graphic Adapter            NSI Logic
echo AST-VGA                         AST Research
echo Spectra VGA                     Genoa Systems Corp.
echo VGA Plus                        STB Systems
echo VGA Master                      Tecmar
echo PC Designs VGA                  PC Designs
echo Sigma VGA                       Sigma Designs
echo Quad VGA                        Quadram Company
echo VEGA VGA                        Video-7, Inc.
echo VGA                             Tseng Labs.
echo QuadVGA                         Quadram Corp.
echo Paradise VGA                    Paradise Systems, Inc.
echo VEGA VGA Deluxe                 Video-7, Inc.
echo VGA450                          Tseng Labs.
echo Maxxum VGA                      Maxxum Corp.
echo .
echo Type SETUP VGA at the end of this program.  ...more
pause
CLS
echo .
echo If you are using one of these displays/cards:
echo .
echo IBM Enhanced Graphics Adapter   IBM Corp.
echo EPIC Graphic Adapter            NSI Logic
echo AST-3G Model 1                  AST Research
echo Spectra EGA Model 4800          Genoa Systems Corp.
echo EGA Plus                        STB Systems
echo EGA Master                      Tecmar
echo MegaGraph Plus                  Altronics International
echo PC Designs EGA                  PC Designs
echo Sigma EGA                       Sigma Designs
echo TEGA-22                         Tatung, America
echo Quad EGA +                      Quadram Company
echo VEGA                            Video-7, Inc.
echo EVA                             Tseng Labs.
echo Overboard                       IDEAssociates, Inc.
echo QuadEGA ProSync                 Quadram Corp.
echo Paradise Autoswitch             Paradise Systems, Inc.
echo VEGA Deluxe                     Video-7, Inc.
echo EVA/480                         Tseng Labs.
echo All Aboard                      IDEAssociates, Inc.
echo Maxxum EGA                      Maxxum Corp.
echo .
echo Type SETUP EGA at the end of this program. ...more
pause
CLS
echo .
echo If you are using one of these displays/cards:
echo  .
echo Hercules Monographics           Hercules Graphics Corp.
echo Hercules Ramfonts               Hercules Graphics Corp.
echo Hercules InColor                Hercules Graphics Corp.
echo Hercules Color Graphics         Hercules Graphics Corp.
echo Maxxum Monographics             Maxxum Corp.
echo .
echo Type SETUP HGA at the end of this program.  ...more
pause
echo If you are using one of these displays/cards:
echo  .
echo IBM Color Graphics              IBM Corp.
echo ATT 6300 CGA                    AT&T Corp.
echo Compaq (all models)             Compaq Computer Corp.
echo Cordata (all models except
echo     Intellipress)               Cordata Corp.
echo Maxxum Monographics             Maxxum Corp.
echo .
echo Type SETUP CGA at the end of this program.  ...more
pause
CLS
echo .
echo If you are using one of these displays/cards:
echo  .
echo Multi-Color Graphic Adaptor
echo .
echo Type SETUP MCG at the end of this program.  ...more
pause
echo .
echo .
echo If you are using one of these displays/cards:
echo  .
echo ATT 6300 CGA                    AT&T Corp.
echo .
echo Type SETUP ATT at the end of this program.  ...more
pause
echo .
echo .
echo Please type one of the following to set up the graphics driver
echo "SETUP VGA" for the VGA graphics card,
echo "SETUP EGA" for the EGA graphics card,
echo "SETUP CGA" for the CGA graphics card,
echo "SETUP HGA" for the Hercules graphics card,
echo "SETUP MCG" for the Multi-Color graphics card,
echo "SETUP ATT" for the ATT 6300 CGA graphics card,
GOTO end
: gotvga
echo .
echo Setting up for VGA card
copy vgarun.com synrun.com
GOTO quit
: gotega
echo .
echo Setting up for EGA card
copy egarun.com synrun.com
GOTO quit
: gotcga
echo .
echo Setting up for CGA card
copy cgarun.com synrun.com
GOTO quit
: gothga
echo .
echo Setting up for Hercules card
copy hgarun.com synrun.com
GOTO quit
: gotmcg
echo .
echo Setting up for Multi-Color card
copy mcgrun.com synrun.com
GOTO quit
: gotatt
echo .
echo Setting up for ATT 6300 card
copy att6300.com synrun.com
GOTO quit
: quit
echo Done
: END

