home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / debug / Background / DeCon / AddModule.doc < prev    next >
Text File  |  1995-06-27  |  3KB  |  76 lines

  1.  
  2.                           Resident Module Launcher 1.2
  3.  
  4.                  (c) 1994 Martin Mares, MJSoft System Software
  5.  
  6. ================================================================================
  7.  
  8.  
  9. Preface
  10. =======
  11.  
  12.    AddModuleand  its documentation are Copyright (c) Martin Mares, MJSoft System
  13. Software, Prague, Czech Republic.
  14.  
  15.    This  archive  can  be  freely  redistributed as long as all of its files are
  16. included   in   their   original   form  without  any  additions,  deletions  or
  17. modifications  (excluding addition of other README-style files and icons) and no
  18. more  than a nominal fee is charged for its distribution.  All copyright notices
  19. in  the  programs and accompanying documentation files must remain intact.  It's
  20. especially  forbidden  to add various '.displayme' files and BBS advertisements.
  21. This style of distribution is generally known as FREEWARE.
  22.  
  23.    Source  text of this program is included in the distribution.  You can freely
  24. improve  it.   If  you  want  to  distribute your improved version, there're two
  25. possibilities:   (1)  Send  your  improvements  to  me  (the best form is a diff
  26. output)  and  I'll include them in the next release.  (2) Distribute them alone.
  27. In  this  case, you must mention the name of original author, change the name of
  28. the  product  (not  only  by  increasing  the  version),  and  obey  all  of the
  29. distribution rules mentioned above.
  30.  
  31.    Special  permission is given to Fred Fish to distribute this program on his
  32. "Fish Disks".
  33.  
  34.    This  software  is  provided  "AS  IS"  without  warranty of any kind, either
  35. expressed  or  implied.   The author is not responsible for any damage caused by
  36. it.
  37.  
  38.  
  39. Introduction
  40. ============
  41.  
  42.    AddModule is able to install resident modules to KickTag and KickMem lists,
  43. which makes them reset-proof.
  44.  
  45. Syntax: AddModule <ModuleName> [CLASS <class>] [PRI <pri>] [INIT]
  46.  
  47. ModuleName - name of resident module you want to install
  48.      class - module class 0-127 (see exec/resident.i). The seventh bit cannot
  49.              be overriden
  50.        pri - module priority -128-127
  51.  
  52.    You may also try to install usual libraries and devices as resident modules.
  53. In this case, specify CLASS 4 and PRI -128. If some library uses some other,
  54. try to arrange the priorities in the appropriate order. The ss.library can be
  55. installed in this way.
  56.  
  57.    If the module is already present in the same or higher version and with the
  58. same or higher priority, it's not installed again.
  59.  
  60.    AddModule is pure and can be made resident.
  61.  
  62.  
  63. Requirements
  64. ============
  65.  
  66.    - Kickstart 2.04 or higher
  67.  
  68.    - ss.library 5.0 or higher (included in this archive)
  69.  
  70.  
  71. Notes
  72. =====
  73.  
  74.    Send comments, suggestions and bug reports to mjsoft@k332.feld.cvut.cz
  75.  
  76.