home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / lan / drivrs30 / read.me < prev    next >
Text File  |  1989-06-08  |  6KB  |  130 lines

  1.         Release 3.0 of the Clarkson packet drivers
  2.  
  3. If you are a user, all you need do is locate the correct packet driver for your
  4. interface, and read DRIVERS.DOC.
  5.  
  6.  
  7. Enclosed you will find
  8.  
  9. 3C501.ASM     Device dependent 3COM 3C501 code.
  10. 3C501.COM     Executable for a packet driver for the 3COM 3C501.
  11. 3C503.ASM     Device dependent 3COM 3C503 code.
  12. 3C503.COM     Executable for a packet driver for the 3COM 3C503.
  13. 3C523.ASM     Device dependent 3COM 3C523 code.
  14. 3C523.COM     Executable for a packet driver for the 3COM 3C523.
  15. DEFS.ASM      Definitions and macros.
  16. DRIVERS.DOC   User documentation.
  17. GENERIC.ASM   Device dependent generic code (a skeleton only).
  18. HEAD.ASM      Resident device independent generic code.
  19. MAKEFILE      Makefile.  Uses tasm and tlink, but MS may work.
  20. NI5010.ASM    Device dependent Interlan NI5010 code.
  21. NI5010.COM    Executable for a packet driver for the Interlan NI5010.
  22. NI5210.ASM    Device dependent MICOM-Interlan NI5210 code.
  23. NI5210.COM    Executable for a packet driver for the MICOM-Interlan NI5210.
  24. PACKETQA.TXT  Questions from R. Nelson and Answers from jbvb@vax.ftp.com
  25. PACKET_D.108  Packet driver spec version 1.08
  26. READ.ME       This file.
  27. README.503    Bob Clements' README file for the 3c503.
  28. SLIP8250.ASM  Device dependent SLIP driver using IBM-PC 8250.
  29. SLIP8250.COM  Executable for a SLIP packet driver for the IBM-PC 8250.
  30. TAIL.ASM      Non-resident device independent generic code.
  31. WD8003E.ASM   Device dependent Western Digital WD-8003e code.
  32. WD8003E.COM   Executable for a packet driver for the Western Digital WD-8003e.
  33.  
  34. I have been in a quandry for some time about the credit that I should take
  35. for these packet drivers.  I created the infrastructure for the packet
  36. drivers, but all of the device dependent portions were written by other
  37. people.  So I feel uncomfortable about taking all the credit.  Probably
  38. the best term to describe what I do is "Editor and publisher", because I
  39. perform a function similar to that served in the literary world.  So, I
  40. sign myself,
  41.  
  42.     Russell Nelson, Editor of the Clarkson packet drivers.
  43.     nelson@clutx.clarkson.edu, nelson@clutx.bitnet
  44.  
  45. Changes from version 2.0 to 3.0 of the drivers:
  46.  
  47. NOTE: Only the SLIP8250, NI5210, and 3c523 drivers have been tested.  All
  48.      others are believed to work.
  49.  
  50. GNU General Public License adopted.  The restriction on commercial usage
  51.      prevented some companies from distributing the packet drivers.  This
  52.      is entirely my idea, so send any comments to nelson@clutx.clarkson.edu.
  53. 3c523 driver added, thanks to Dan Lanciani (ddl@harvard.edu).
  54. Gregg Stefanik (wstef@eng.clemson.edu) is working on a 3c505 driver.  Don't
  55.      bug him about it unless you're willing to be a alpha tester.
  56. User documentation added (DRIVERS.DOC).
  57. Brad Clements (no relation to Bob Clements) fixed the NI5210 driver so that
  58.      it will work with a MTU of 1500.
  59. The NI5210 now checks for shorts and opens before it starts up, thanks to
  60.      Brad.
  61. All memory-mapped packet drivers now check the packet length in send_pkt to
  62.      ensure that too-long packets get trapped.  All packet drivers will
  63.      work with MTUs of 1500 (plus 14 bytes of Ethernet header).
  64. Deborah Swanberg noticed that attach_type was returning NO_CLASS
  65.      when it meant to return NO_TYPE.
  66. She also noted that packet drivers weren't returning unique handles.  This
  67.      is only a problem with Phil Karn's code, as his code directs *every*
  68.      packet driver to the same receiver routine.  With non-unique handles,
  69.      it was impossible to tell which packet driver was upcalling the
  70.      receiver.  Unique handles are now generated, based on the starting
  71.      segment of the driver.  The latest version of Karn's code uses different
  72.      receiver routines, so the code to implement this will eventually go away.
  73. Tail.asm now prints the Ethernet address of the interface (if it is an Ethernet
  74.      class device)
  75. Micom has sold Interlan, and Racal has bought it, so perhaps the NI5210 is
  76.      now the Racal-Interlan NI5210?
  77. If anyone is interested in using the Zenith Z-100 with a SLIP packet driver, please
  78.      send me (Russell Nelson) mail.  I have it partially written, but will
  79.      probably never use it myself.
  80. WD8003E and 3c503 sped up slightly -- stole movemem from NI5210.
  81.  
  82.  
  83. Changes from version 3 to 2.0 of the drivers:
  84.  
  85. Version numbering now changed.  If the skeleton changes, the major version is
  86.      incremented and all the minor versions are reset to zero.
  87.  
  88. Support for version 1.08 of the packet driver spec included.
  89. Bob Clements' 3c503 driver added.  See README.503.
  90. Some comments improved.
  91. BAD_COMMAND checking code fixed.
  92. cld instructions added to ensure that DF=0.
  93. NI5210 sped up slightly -- look at movemem in ni5210.asm for an especially
  94.      fast routine to move memory around.
  95.  
  96.  
  97. Changes from version 2 to 3 of the drivers:
  98.  
  99. SLIP8250 can now be one of three classes: SLIP, AX.25, and KISS.
  100. Tail.asm now checks for a packet driver already at the given interrupt.
  101. Tail.asm now echoes its arguments in hex and decimal.
  102. Tail.asm will close stdout so that a file handle won't be used up in
  103.      case the user redirects stdout to NUL.
  104. Head.asm now supports driver termination.
  105. Termin.com added to terminate a driver.
  106. Head.asm now does a stack swap to avoid pushing too many things when
  107.      interrupting MS-LOSS.
  108.  
  109.  
  110. Changes from version 1 to 2 of the drivers:
  111.  
  112. !!  Arguments are now in decimal by default  !!  Use a 0x prefix for hex.
  113.  
  114. DEFS.ASM created.
  115. The loadport macro improved.
  116. SLIP8250 driver added, thanks for a C version from Phil Karn.
  117.      I've tried to put some 16550 support in, but I don't have one to
  118.      test it with.  The documentation insists the TBRE goes low when
  119.      the transmit buffer is not empty, while it makes sense for it to stay
  120.      high while the buffer is not full.  I suspect the documentation is
  121.      wrong.
  122. NI5010 driver added, thanks for a C version from Bill Doster.
  123. WD8003 driver added, by Bob Clements.
  124. Loadport macro added to WD8003 driver by Russell Nelson.
  125. Numeric arguments may now be specified in octal, decimal or hex, using the
  126.      C notation.
  127. Numeric arguments can now use up to 32 bits.
  128. Source files reformatted.
  129.  
  130.