home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / cdccyber / cdctap.txt < prev   
Text File  |  2020-01-01  |  5KB  |  111 lines

  1.      Enclosed is a tape containing the NOS 2.2 code for Kermit you requested.
  2. The tape is written as 1600 CPI, SI format, VSN=KERMIT.  We had to compile at
  3. OPT=0 on our FTN5 compiler because OPT=1 and OPT=2 caused errors (we are
  4. running FTN5 Level 538).  If at all possible, OPT=2 should be used.  The error
  5. we ran into was a question mark followed by a carriage return at the
  6. "Kermit-170>" prompt would cause the program to exit after listing the options.
  7.  
  8.      Enclosed on this tape are the following files:
  9.  
  10.                File Contents
  11.                1    KERMIT oldpl
  12.                2    AZLIB oldpl
  13.                3    8/12 ASCII KERMIT help file
  14.                4    DISPLAY CODE (UT 63 character set) KERMIT help file
  15.                5    8/12 ASCII Commercial use document
  16.                6    DISPLAY CODE (UT 63 character set) Commercial use document
  17.                7    8/12 ASCII KERMIT user document
  18.                8    DISPLAY CODE (UT 63 character set) KERMIT user document
  19.                9    8/12 ASCII KERMIT protocol document
  20.                10   DISPLAY CODE (UT 63 character set) KERMIT protocol document
  21.  
  22. Notes and Cautions
  23.  
  24.      The character code for the DISPLAY CODE files is a hybrid 63 character set
  25. used only at the University of Texas.  The FORTRAN source code has been set up
  26. so that the differences are minimized.  The character set translation tables
  27. use octal values for characters that differ between the UT 63, NOS 63 and NOS
  28. 64 character sets.  A character set pocket reference card for the University of
  29. Texas has been included to aid in the translation to your character set.
  30.  
  31.      File number 2 on the tape contains an UPDATE program library used to pro-
  32. duce AZLIB.  These routines are supplied by the Univeristy of Arizona in
  33. Tuscon.  The routines contained in the program library are only those necessary
  34. to build Kermit.  Some may not be needed if your site has equivalent routines.
  35.  
  36.      There is some concern that an ASCII colon might get lost in a line
  37. termina- tor if it was the last character in a line from the micro in a 64
  38. character set environment.  Subroutine EDL could be taught to append a space
  39. after a colon at EOL if necessary.
  40.  
  41.  
  42.  
  43.      Subroutine ECHOPLX (called by STTY) can be shot in the head at normal
  44. (Half-Duplex) NOS/BE sites.  NOS 2.2 sites will not use subroutine ECHOPLX.
  45. Half-Duplex sites will also need to change the BLOCK DATA value for duplex from
  46. FULLDUP to HALFDUP.
  47.  
  48.      Full Duplex NOS/BE sites will need to insert their own magic in place of
  49. ECHOPLX, or get the PP routine UUI from the University of Arizona.  However,
  50. since UUI depends on communication front end mods which others probably have
  51. not done, it was not included.  If you want a copy, contact:
  52.  
  53.                     Mr. Ric Anderson
  54.                     University of Arizona
  55.                     University Computer Center
  56.                     Tuscon, Arizona  85721
  57.                     (602) 621-6701
  58.  
  59.      The FTN5LIB routine "SYSERR." is omitted from the load in the OVCAP
  60. version as it drags in about 3000B words of junk KERMIT does not need.  This
  61. keeps KERMIT's size down, which is vital given INTERCOMs penchant for swapping
  62. things.  I get about 58 CPS throughput at 1200 baud or above on an otherwise
  63. idle Cyber-175.  SET RDELAY has been setup to help by placing Kermit in RECALL
  64. for a while before issuing a read function.  If data becomes available before
  65. the read function is issued, then it will not be swapped out.  This has
  66. improved through- put to 61 CPS at 1200 baud and 78 CPS at 2400 baud on a
  67. moderately loaded system (88 users).  For NOS 2.2 sites running at level 602 or
  68. above, the input buffer is queried for characters until some arrive.
  69.  
  70. Sample OVCAP Build
  71.  
  72. UPDATE,F,N=KERMUPL,I.
  73. FTN5,I,OPT=2.
  74. FTN5,I,B=KLIBREL,OPT=2.
  75. LIBGEN,P=KERMLIB,F=KLIBREL.
  76. LDSET,MAP=SBEX.
  77. LOAD,LGO.
  78. NOGO,KERMIT.
  79. COMMENT.** INSERT LINES HERE TO EDITLIB
  80. COMMENT.*  KERMIT INTO SYSTEM OR CATALOG
  81. COMMENT.*  IT UNDER ID=PUBLIC.
  82. COMMENT.
  83. ---EDITLIB or CATALOG goes here---
  84. *EOR
  85. *IDENT,moddeck
  86. *DEFINE,OVCAP
  87. *DEFINE,NOS
  88. *DEFINE,642CSET
  89. *DEFINE,OTHER
  90.  
  91.      If you have any questions or problems, feel free to call me at (512)
  92. 471-3241.  If you have problems with the NOS 2.2 version, contact Bill Russell
  93. first at:
  94.  
  95.                     Bill Russell
  96.                     New York University
  97.                     Courant Institute of Mathematical Sciences
  98.                     251 Mercer Street
  99.                     New York, New York  10012
  100.  
  101.                                         Sincerely,
  102.  
  103.  
  104.                                         Jim Knutson
  105.                                         User Services, Computer Center
  106.                                         U of Texas at Austin
  107.  
  108. Enclosures:  Tape
  109.              Itemized Listing
  110.              UT Character Set Reference Card
  111.