home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 153.img / TELES.ZIP / CONFIG.PAS < prev    next >
Pascal/Delphi Source File  |  1988-06-06  |  320b  |  14 lines

  1. Uses
  2.   Crt,
  3.   Common;
  4.  
  5. begin
  6.   Writeln('■ Setting Comport to COM2: - Make sure this is run in your BBS dir');
  7.   assign(systatf,'status.dat');
  8.   reset(systatf); read(systatf,systat);close(systatf);
  9.   systat.comport:=2;
  10.   writeln('■ Complete, thank you John Martin for being a stud !!');
  11.   savesystat;
  12. end.
  13.  
  14.