List of files needed to create a Graphics Driver for WordPerfect 6.0 
for DOS.  If you also want to create a text driver you need to look
at the files in the TXT.EXE selfextracting file on the SDK disk.

VGA.ASM			Source code of the heart of the VGA driver

VGA.BIN			VGA.ASM assembled code converted through EXE2BIN to a
			.BIN file.

VGA.CTL			Contorl file that tells MAKEXDRV how to combine the
			VGA.* blocks into a working VGA.VRS driver.

VGA.HLP			WP 6.0 level hypertexted help file created from
			VGA.WP.

WP2HLP.EXE		Compiles WP 5.1 help text (VGA.WP) to WP 6.0 hypertext
			help file (VGA.HLP).

WP2HLP.WP		General instructions on the purpose and use of the
			WP2HLP utility program.  In WP 5.1 format

VGA.MAK			Borland Make 2.0 file used to assemble, convert,
			compile, and combine the various parts of the driver
			into VGA.VRS.

VGA.MNU			A WP 5.1 formatted menu file containing all of the
			menu entries necessary for VGA.VRS

VGA.VRS			The completed driver to be used by WP 6.0

VGA.WP			WP 5.1 formatted document file with all of the help
			text in it.  This is the source file for WP2HLP.

VGAP.ASM		The source code for a graphics card presence test
			routine to be put into VGA.VRS.

VGAP.BIN		Assembled VGA.ASM code converted from .EXE to a .BIN
			file.

WPGIDC.INC		Include file that is used by VGA.ASM.

WPGIDEF.INC		Include file used by WPGIDC.INC

WPGIEQU.INC		Include file used by WPGIDEF.INC

To create this file you will need the MAKEXDRV.EXE and MAKEXDRV.WP
files. These files can be found on the SDK disk.

To create a VRS driver using Borland Make.exe utility you would type the 
following in the directory containing the VRS driver files and the Make 
utility:

	make -fvga.mak

To create the VRS driver using MicroSoft Nmake.exe utility you would type
the following:

	nmake /FPi vga.mak

When the driver is created the driver name will be VGA.VRS.

NOTE:  
The source code has been assembled using masm version 5.0 and version 5.1.
