home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / MOUSE / COMM1_34.ZIP / README.NOW < prev    next >
Encoding:
Text File  |  1988-03-13  |  3.6 KB  |  94 lines

  1.                 ComWare Multiple Serial Support Software
  2.  
  3.  
  4.         ComWare provides DOS compatibilty for up to 34 serial ports,
  5.         additional user-friendly support for serial port control, and
  6.         examples of use in source code form. This archive contains the
  7.         following files relevant to the installation and operation of
  8.         a wide variety of multi-port serial cards operating under the
  9.         MS or PC-DOS operating environment.
  10.  
  11.                 COMS.SYS        Device driver configured for 34 COM
  12.                                 ports.
  13.  
  14.                 COMSET.EXE      Port initializer for 34 COM ports.
  15.  
  16.                 COMSWAP.COM     Channel redirector to redirect/reconfigure
  17.                                 COM ports in memory.
  18.  
  19.                 SPRINT.COM      Allows printer reassignment to serial ports.
  20.                                 (like MODE.COM)
  21.  
  22.                 MODEM.ASM       A simple full/half duplex dumb terminal
  23.                 MODEM.EXE       system for any COM port.
  24.  
  25.                 RX.ASM          A routine to copy data from any COM port
  26.                 RX.EXE          line to a named file until the operator
  27.                                 cuts in.
  28.  
  29.                 CONFIG.SYS      A sample file to load COMS.SYS.
  30.  
  31.  
  32.         Background:
  33.  
  34.         The IBM PC/XT/AT provides hardware support for four COM ports. But
  35.         DOS, in its varied forms, only supports two of those COM ports.
  36.         COM.SYS is a CONFIG loaded device driver conforming to all the
  37.         rules for MS-DOS and PC-DOS to supply that function. COMS.SYS is
  38.         compatible with all software that drives COM1 and COM2 and extends
  39.         that functionality in logical form to COM3 and beyond. 
  40.  
  41.  
  42.         COMS.SYS
  43.  
  44.         ROM BIOS calls in both IBM and close compatible machines are 
  45.         directed through the software interrupt 14 Hex. The DX register
  46.         on the 8088 contains a 0, 1, 2, or 3 for selecting one of the 
  47.         four available ports. On installation COMS.SYS takes over the
  48.         14 Hex interrupt and all BIOS calls are routed through it. The
  49.         DX register may now be loaded with any number to represent the
  50.         desired port counting from 0 to the last fitted port.
  51.  
  52.  
  53.         COMSET.EXE
  54.  
  55.         COMSET.EXE provides the user with a convenient way to configure
  56.         the ports to suit hardware requirements.
  57.  
  58.  
  59.         MODEM.EXE
  60.  
  61.         This simple utility program is provided as an example to serve as
  62.         a starting point for writing your own programs. The <CR> key has 
  63.         been expanded to be Carriage Return/Linefeed, and the Escape key
  64.         terminates operation.
  65.  
  66.  
  67.         RX.EXE
  68.  
  69.         This simple program is called with a valid filename for a parameter.
  70.         RX.EXE also asks for a serial port to use and then copies anything
  71.         received into a 64K buffer. When the operator keys Escape, data 
  72.         collection is terminated, and everything is then written to the file
  73.         named.
  74.  
  75.  
  76.         COMSWAP.COM
  77.  
  78.         COMSWAP is a utility that allows the user to redirect output from
  79.         one COM port to another. The syntax for COMSWAP.COM is as listed
  80.         below.
  81.                 C:\> COMSWAP COM1 COM5
  82.  
  83.  
  84.         SPRINT.COM
  85.  
  86.         SPRINT extends the functionality of the DOS MODE command to allow
  87.         access to the extended COM ports. Its syntax is as listed below.
  88.                 C:\> SPRINT LPT1:=COM4:
  89.         To cancel reassignment, enter as follows.
  90.                 C:\> SPRINT LPT1:
  91.         If you enter only SPRINT at the DOS prompt, an assignment log is 
  92.         produced.
  93.  
  94.