home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / packetdrivers.tar.gz / pd.tar / src / 00read.me next >
Text File  |  1992-02-10  |  2KB  |  53 lines

  1. PACKET DRIVER SOURCE CODE
  2.  
  3. Crynwr Packet Driver Collection Version 10 at Columbia University
  4.  
  5. February 1992
  6.  
  7. This directory contains the source files for the packet drivers from the
  8. Crynwr (formerly Clarkson) packet-driver collection.  See the file
  9. manifest.doc to find out which packet driver is for which board, and see
  10. install.doc for installation instructions.  The documentation files are in
  11. the packet-drivers/doc directory.
  12.  
  13. These files are all ASCII text.  Transfer them in text (ASCII) mode.
  14.  
  15. To build a packet driver from the source code, make sure the following files
  16. from the source directory are in your current PC directory:
  17.  
  18.   CHROUT.ASM
  19.   DECOUT.ASM
  20.   DEFS.ASM
  21.   DIGOUT.ASM
  22.   GETDIG.ASM
  23.   GETNUM.ASM
  24.   HEAD.ASM
  25.   PRINTEA.ASM
  26.   PRINTNUM.ASM
  27.   SKIPBLK.ASM
  28.   TAIL.ASM
  29.   TIMEOUT.ASM
  30.   VERIFYPI.ASM
  31.  
  32. and then also put the device-specific file in the same directory, for
  33. example 3C501.ASM.  Now give these commands at the DOS prompt (using
  34. the 3c501 driver as an example):
  35.  
  36.   masm head;
  37.   masm 3c501;
  38.   masm tail;
  39.   link head+3c501+tail, 3c501;
  40.   exe2bin 3c501.exe 3c501.com
  41.   delete 3c501.exe
  42.  
  43. The resulting 3C501.COM file is your packet driver.  Install it on your PC
  44. according to the instructions in the INSTALL.DOC file.  Replace "3c501" in
  45. these instructions by the filename of the packet driver for your device.
  46.  
  47. NOTE: Packet drivers are also available from network adapter vendors such
  48. as Cabletron.  These drivers cannot be distributed publicly.  Contact your
  49. vendor or your network manager for further information.
  50.  
  51. DISCLAIMER: Columbia University is supplying these files as a convenience.
  52. No support or development of packet drivers by Columbia University is implied.
  53.