home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / beehive / zcat / xref27.lbr / XREF27.DOC < prev   
Text File  |  1991-01-31  |  2KB  |  41 lines

  1.   XREF27.ASM  Cross-reference program for .ASM or .PRN files 11/09/85
  2.  
  3.  
  4.   This program generates a cross-reference list for all labels in an
  5.   .ASM, .MAC or .PRN file.  Thus it works with either an assembly level
  6.   source code file or an assembled print file.    No other cross-reference
  7.   program is known to have this sort of versatility and ease of use.  It
  8.   will number the lines and generate a cross-reference listing at the
  9.   end of the program.  If a numbered listing is not requested, it makes
  10.   a cross-reference listing without the source code - this is often used
  11.   to find what label names have been already used - or which labels were
  12.   actually unnecessary as they were not used at all.  The output can be
  13.   shown to the CRT, sent directly to the printer, or to a disk file.  If
  14.   a disk file is used, it is given the same name as the original file,
  15.   with an .EXR extent.
  16.  
  17.   ----------------------------------------------------------------------
  18.             current revision
  19.  
  20.   11/09/85  Fixed an intermittent bug that was causing the program to
  21.     v27     miss seeing the EOF character and keep right on going until
  22.         it bombed by filling the disk.  This occured on some longer
  23.         .PRN files when adding line numbers.  Took awhile to find,
  24.         as only occured occasionally.  Likely been around since the
  25.         program was written.    - Irv Hoff
  26.  
  27.   ----------------------------------------------------------------------
  28.  
  29.   It is invoked by entering:
  30.  
  31.     XREF FILEBNME.ASM    (output to printer)
  32.     XREF FILENAME.PRN CRT    (output to CRT)
  33.     XREF FILENAME.ASM D    (output to disk - default drive)
  34.     XREF FILENAME.PRN B:D    (output to disk - drive B: in this case)
  35.  
  36.   To get the help guide type:
  37.  
  38.     XREF ? <ret>  or   XREF <ret>
  39.  
  40.   ----------------------------------------------------------------------
  41.