home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / d / nosker.ins < prev    next >
Text File  |  2020-01-01  |  2KB  |  43 lines

  1. Installation of NOS Kermit.
  2.  
  3. NOS Kermit is supplied as a single source file suitable for generating a
  4. modify format OPL.  Any changes will be supplied as modify directives to
  5. this OPL.  From the supplied source the installation is as follows:-
  6.  
  7.    MODIFY,P=0,N=KERMPL,C=0,F,Z./*CREATE filename
  8.  
  9.       where 'filename' is the name of the local file containing the
  10.       supplied source.
  11.   
  12. This will create a local file 'KERMPL' which should be saved.
  13. From this file the binary file can be created. To ensure that
  14. the correct binary is produced for your system the symbol PSR 
  15. should be set to the PSR level of the system. 
  16.  
  17.    MODIFY,F,C,P=KERMPL,I=modname.
  18.  
  19.        where 'modname' is the name of a local file containg any 'MODIFY'
  20.        directives supplied in a '.BWR' file.  If there are no modifications 
  21.        then 'modname' should be replaced by '0'.
  22.  
  23.    Make the 'SYSTEM OPL' local as a file called 'OPL'.
  24.  
  25.    COMPASS,I,B=LGO,L=LIST,S=PSSTEXT,S=NOSTEXT.
  26.    LDSET(PRESET=ZERO) 
  27.    LOAD(LGO)
  28.    NOGO(KERMIT) 
  29.  
  30.        ^C
  31.    The file 'KERMIT' now contains the absolute binary required to 
  32.    run NOS Kermit.  Currently this file can be executed from any 
  33.    user job however, it is likely that later releases will require
  34.    KERMIT to reside on the system as SSJ= validation is intended.
  35.    This is primarily to request the correct device before receiving 
  36.    a file so that the delay during the 'DEFINE' function (if used)
  37.    can be avoided.
  38.  
  39.    NOTE: 
  40.         NOS Kermit was developed on NOS 2.4 and will be updated (if
  41.    required) for NOS 2.5.  There are no known reasons why it should 
  42.    not run on lower versions of NOS but this has not been tested. 
  43.