
   The configfile BASSPASC.CFG:
   ============================

   1.  LIBDIR=F:\GYS_LIB\;H:\BOOGIE\LIB\
     PATHs for the LIBs, the compiler looks for the files there if not found
     in the actual directory. This is valid for USES and for INCLUDE, too !
     More PATHs can be given, separated with ;
     PATHs should end in "\"

   2.  TEMPDIR=R:\TEMP\
     The PATH for the TEMP, the compiler puts the *.IND files there. After
     compiling, these files are deleted.

   3.  REGFILE=F:\JOHNNY\BASSPASC.REG
     This option is useful, when the BAPC compiler and the registration
     file (BASSPASC.REG) are in separate directories. ( For example,
     the compiler is stored at the HDD, and the registration file is
     kept at a network drive)
     The file is searched at these places (in this order):
      1. the filename, which is given at the CONFIGFILE
      2. the BASSPASC.REG in actual directory
      3. the BASSPASC.REG in the directory of the compiler (BAPC3.EXE)

   4.  USES=WRITE1,SYSTEM1,MEMORY
     These LIBs are compiled anyway ( it's like having a USES
     at the _start_ of the source )

   5.  INCLUDE=JOHNNY.H,MATH1.H,MEMORY.H
     It's like USES, but this 'compiles' an INCLUDE at the _beginning_
     of the source.

   6.  HEADERS=F:\GYS_LIB\HEADERS.H
     The file in which the headers ( the assembler and memory specific
     parts of the source and makefile ) is kept.

     A configfile for example:

     LIBDIR=C:\BAPC3\LIB\
     TEMPDIR=C:\TEMP\
     HEADERS=C:\BAPC3\HEADERS.H
     REGFILE=C:\PERSONAL\BASSPASC.REG
     MAKEFILE=MAKE.BAT
     USES=WRITE1,SYSTEM1,STR0
     INCLUDE=DEFAULT.H,MEMORY.H,MATH1.H


