home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / basic / fc13.arc / FC.DOC < prev    next >
Text File  |  1985-08-18  |  2KB  |  44 lines

  1.  
  2.  
  3. FC Command                                              Version 1.3
  4. ----------                                              Aug 17, 1985
  5.  
  6. Purpose:  FC compares two versions of an interpreted BASIC program
  7.           to produce a MRG (merge) file. The MRG file can then be
  8.           merged into the original BASIC program to yield the new
  9.           version of the program.
  10.  
  11. Syntax:   FC
  12.  
  13. Remarks:  The BASIC programs must first be saved with the ,A (ASCII)
  14.           option. You are prompted to enter the "original" file name,
  15.           the "modified" file name, and the name of the file to
  16.           contain the changes.  For example,
  17.  
  18.           FC
  19.           Enter original file name-myprog1.bas
  20.           Enter modified file name-myprog2.bas
  21.           Enter   change file name-myprog1.mrg
  22.  
  23.           The file 'myprog1.mrg' will contain the statements that
  24.           are different. You can then re-create 'myprog2.bas' by
  25.           applying the changes to 'myprog1.bas'. For example,
  26.  
  27.           BASICA
  28.           load"myprog1
  29.           merge"myprog1.mrg
  30.           save"myprog2
  31.           system
  32.  
  33. Note:     Each file must contain an end-of-file character. If not,
  34.           an Error 62 message will be issued.
  35.  
  36.           FC was written in assembler for speed and small size. It
  37.           is based on the public domain FC.BAS program which is used
  38.           as an aid to maintaining version levels.
  39.  
  40.           Written by Vernon D. Buerg for the IBM PC, and compatibles,
  41.           using DOS 2.0 or later. For private, personal use only.
  42.           Not for sale or higher.
  43.  
  44.