home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / advbas.zip / SOURCE.DOC < prev    next >
Text File  |  1987-12-13  |  2KB  |  49 lines

  1.     Source file information:
  2.  
  3.  
  4.  
  5.      SOURCE.ARC contains the source code for all ADVBAS routines.  This
  6.      consists of the assembly listings (.ASM files).  You can access these
  7.      files using the enclosed ARCE utility, by typing "ARCE SOURCE"
  8.      (without the quotes).
  9.  
  10.  
  11.  
  12.  
  13.      BASIC source files (outside of SOURCE.ARC):
  14.  
  15.      The file MONKEY.BAS is the source for a file time/date/attribute
  16.      modification utility.  It provides example usage of the FINDFIRSTF
  17.      series of ADVBAS functions, among other things.
  18.  
  19.      The file XREF.BAS is the source for a cross-reference generator.
  20.      Compile this with no switches, and link with ADVBAS in the usual
  21.      manner.  This will provide useful cross-reference listings for your
  22.      programs, provided that they conform to the interpreted BASIC
  23.      format-- the BASIC program to be xreffed must be in tokenized form,
  24.      and must contain line numbers on every line.
  25.  
  26.      The file COMBLINE.BAS is the source for a line combiner.  Compile
  27.      this with no switches, and link with ADVBAS in the usual manner.
  28.      COMBLINE can be used on programs in interpreted BASIC format to
  29.      crunch programs down to the smallest possible size.  It combines as
  30.      many lines together as possible without changing the program
  31.      function.  For example:
  32.  
  33.     10 REM This is a test
  34.     20 PRINT
  35.     30 PRINT
  36.     40 PRINT"This is only a test"
  37.  
  38.      would be converted into
  39.  
  40.     10 REM This is a test
  41.     20 PRINT:PRINT:PRINT"This is only a test"
  42.  
  43.     This is recommended only for debugged BASIC programs.  The code
  44.     produced will be smaller and faster for interpreted programs, and also
  45.     for compiled programs if you are using the DEBUG or ON ERROR options.
  46.     You need the program to be comblined in both tokenized and ASCII
  47.     formats (TEST.BAS and TEST.ASC, for instance).  Output will be an
  48.     ASCII file with the extension BCS.
  49.