home *** CD-ROM | disk | FTP | other *** search
/ Ultimate DOOM Companion / PowersourceMultimedia-UltimateDOOMCompanion.iso / patches / ethersl.zip / SLIPPER.DOC < prev    next >
Text File  |  1993-02-27  |  2KB  |  65 lines

  1.                 SLIPPER and CSLIPPER Release 1.2
  2.                 --------------------------------
  3.  
  4. Slipper is a replacement for SLIP8250.  It provides a basic functionality
  5. packet driver using the SLIP protocol.  It is written completely from scratch
  6. using Turbo Pascal and Assembler.  Slipper has (hopefully) been designed for
  7. high baud rate operation with standard non-fifo 8250 chips.  The 1.1 release
  8. adds support for 16550 chips.  (FIFO trigger level 4 on receive)
  9.  
  10. Version 1.2 fixes some 16550 bugs and includes support for CSLIP.  Due to the
  11. bulkiness of supporting cslip, there are two version of slipper provided.  The
  12. standard version is call SLIPPER, and the CSLIP version is called CSLIPPER.
  13. The command line parameters are the same for both versions.
  14.  
  15. Version 1.3 fixes some bugs in the CSLIP part, and does a slight
  16. tidyup/speedup of some of the code and reduces stack requirements.  Also
  17. added a handle for RARP packet types in the ether simulation.
  18.  
  19. Usage:   slipper [com<digit 1-4>] [vec=<hex vector>] [baud=<speed>] [ether] [?]
  20.  
  21. options (in any order):
  22.  
  23.         com<digit 1-4>   The serial comm ports 1 to 4.
  24.                          com1      base=3f8, irq=4  (default)
  25.                          com2      base=2f8, irq=3
  26.                          com3      base=3e8, irq=4
  27.                          com4      base=2e8, irq=3
  28.  
  29.         port=<hex port>  override the com port setting  (0000-FFFF)
  30.  
  31.         irq=<hex digit>  override the com irq setting  (0-F)
  32.  
  33.         vec=<hex vector> the packet driver interrupt vector
  34.                          default is 60
  35.  
  36.         baud=<speed>     baud rate of the connection
  37.                          default is the current speed setting.
  38.                          max = 115200
  39.  
  40.         ether            simulate an ethernet board. (IP and ARP only)
  41.                          default is non-ethernet
  42.  
  43.         ?                display the commands.
  44.  
  45. examples
  46.         slipper
  47.  
  48.            - com1, vector=60H, baud=whatever defined, non-ethernet
  49.  
  50.         slipper com3 vec=63 baud=38400 ether
  51.  
  52.            - com3, vector=63H, baud=38400, ethernet simulation
  53.  
  54.  
  55. also, you can type
  56.  
  57.     slipper ?
  58.  
  59. for the commands.
  60.  
  61.  
  62.  
  63.  
  64. Send any comments or bug reports to peter@psychnet.psychol.utas.edu.au
  65.