home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / USCX / TURBO-05.ZIP / BLIST.DOC < prev    next >
Text File  |  1984-12-01  |  896b  |  18 lines

  1. BList is a Turbo Pascal Source Code lister and BEGIN/END Counter
  2. program.  It can print a listing to Console or Printer, with
  3. optional begin/end, case/end, and record/end counter.  It was
  4. initially published in the Aug./Sept. issue of TUG Lines.
  5.  
  6. This version of the code is specific to CP/M-80 because the program
  7. looks for a parameter passed by CP/M at absolute location $80.
  8. However, I believe it can be easily modified for MS-DOS.  The
  9. program PARAMS.PAS (published in Jun./July issue of TUG Lines)
  10. implies that only a few declarations need to be changed in the
  11. BLIST.PAS program.  The following declarations should be changed
  12. in the GET_IN_FILE procedure:
  13.  
  14. Var FNam: String[14];
  15.     Parm: String[14] Absolute CSeg:$0081;
  16.     ParmLth: Byte Absolute CSeg:$0080;
  17.     Existing: Boolean;
  18.