home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / CPM86 / MSUP.DOC < prev    next >
Text File  |  2000-06-30  |  3KB  |  64 lines

  1.             MSUP - Modem SUPervisor
  2.  
  3.     MSUP allows a CompuPro system with MPM86 or MPM8-16 to run
  4. Communication software without loosing characters and allowing more than
  5. one Modem to be used simultaneously. If only One COM channel is available,
  6. or all are used by users on the system, the use of Mutual eXclusion queues
  7. will prevent any other user from grabing the modem. MSUP was tested at speeds
  8. of up to 19200 bps in file transfer modes and up to 2400 bps in ASCII mode
  9. on a system with the 8085/88 Cpu board installed. Higher speeds may be possible
  10. with the 8086 board and I sure would like to hear from anyone with a 80286 !
  11.  
  12.     Modem programs should of course make use of MSUP otherwise MSUP
  13. doesn't do much good ! M8MPMIN.A86 is the source listing for the overlay
  14. to go with MDM8xx and can be used with MDM8xx or adapted to work with another
  15. 8086 Modem program. (Also SYSMPM.A86 is available from the author to run
  16. with the 16 bit version of MODEM901)
  17.  
  18.  
  19.     Installing MSUP is a relatively simple procedure. After assembling
  20. MSUP.A86 with ASM86 and generating MSUP.CMD with GENCMD, rename MSUP.CMD to
  21. MSUP.RSP. Run GENSYS to generate a new MPM.SYS file and include MSUP.RSP.
  22. Answer all the GENSYS questions as specified in the CompuPro MPM 8-16 manual
  23. except for the Number of System flags which should be 51 with MSUP installed.
  24. Next copy the terminal and printer option files TTYS and LPRS into the files
  25. TTYSC and LPRSC respectively:
  26.  
  27.     PIP TTYSC=TTYS
  28.     PIP LPRSC=LPRS
  29.  
  30. Do NOT INCLUDE THE CONSOLE NUMBERS to be used as communication channels in the
  31. TTYS and TTYSC files as otherwise these channels will be used by MPM as
  32. ordinary consoles. Last but not least create the file COMCH as per example 1
  33. specifiying the Console numbers to be used as communication channels. After
  34. booting MPM with MSUP installed, MSUP will print a message on the system
  35. console indicating it is active. The creation of the new comm. channels can be
  36. verified by running MPMSTAT and looking for the MXmodemN queues.
  37.  
  38.     If you have any problems installing MSUP.RSP and getting it to run
  39. let me know.
  40.  
  41.                 - 09/20/84  - Alex Soya
  42.                           P.O. Box 121
  43.                           Melbourne Bch.
  44.                           FL. 32951
  45.  
  46.                           Melbourne RCPM (305) 259-7955
  47.  
  48.  
  49.     Example 1:    COMCH file format
  50.  
  51.         N: [Comment] <CR><LF>
  52.  
  53.     N = Console number to be used as Communication channel
  54.     Comment is optional. Each line must be terminated
  55.     by a Carriage Return, Line Feed sequence.
  56.     The last line must be terminated by <CR><LF><EOF>
  57.     (EOF is a Ctrl-Z).
  58.  
  59.     eg:
  60.  
  61.             2: Phone line 1
  62.             3: Phone line 2
  63.  
  64.