home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / modem / byepc300.arc / BYESTAT.ARC / READ.ME < prev    next >
Text File  |  1987-04-20  |  633b  |  27 lines

  1.  
  2.          **  Compiling the Source Code **
  3.  
  4. * To create a new version of STAT.EXE you will need the following
  5.   source files on disk:
  6.  
  7.         STAT.C
  8.         TDELAY.ASM
  9.  
  10. * Compile STAT.C using the following command for Microsoft C
  11.  
  12.         MSC STAT;
  13.  
  14. * Compile TDELAY.ASM you will need MASM.EXE to assemble the code.
  15.   this module is pre-compiled for the Small Memory Model and need
  16.   not be changed unless, you change memory model sizes.
  17.  
  18.         MASM TDELAY;
  19.  
  20. * Once both modules are compiled you will need the following object
  21.   modules to link using RELNK.BAT:
  22.  
  23.         STAT.OBJ
  24.         TDELAY.OBJ
  25.         BYEXFACE.OBJ        (see directory \BYEXFACE)
  26.  
  27.