home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / lambda / misc / generic.lbr / GENERIC.DZC / GENERIC.DOC
Encoding:
Text File  |  1993-10-25  |  4.0 KB  |  123 lines

  1.  
  2. [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
  3. []                                      []
  4. []                 Documentation for                  []
  5. []                                      []
  6. []          GENERIC.ASM and GNRC52x.ASM (52 COLUMNS)          []
  7. []          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~          []
  8. []                                      []
  9. []                     by                      []
  10. []                 Richard S. Altman                  []
  11. []                                      []
  12. []                  October 15, 1991                  []
  13. []                                      []
  14. []          COPYRIGHT (c) 1989 by Richard S. Altman          []
  15. []                All Rights Reserved                  []
  16. []                                      []
  17. [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
  18.  
  19.  
  20. USER SUPPORTED
  21. --------------
  22.  
  23.     This program is user-supported software.  It is copyrighted and cannot
  24. be sold for profit (without the author's express written permission), but it
  25. may be copied and distributed for free.
  26.  
  27.     The  SHAREWARE  concept is a distribution method that dispenses with
  28. heavy marketing/advertising costs and gives the user the opportunity to try
  29. a software program before buying.  Its continued existence depends on each
  30. user paying for what he does, in fact, use.
  31.  
  32.     If you find this program [GENERIC.ASM] useful,  please send the $10 (or
  33. more) registration fee directly to the author:
  34.  
  35.         Richard S. Altman
  36.          P.O. Box 4388
  37.          Clearlake, CA 95422-4388
  38.  
  39.     Upon registration, you will receive the opportunity to receive help (by
  40. mail) for this program.  Please enclose a stamped, self-addressed envelope,
  41. along with an explanation of what the problem is (and a printout of your
  42. program, if necessary).   If this author can possibly be of help, you shall
  43. receive an answer in a few days.  You will also be notified if the help is
  44. not forthcoming.
  45.  
  46.     Comments on programs are also most welcome!
  47.  
  48.     Due to possible unforeseen circumstances, the above offer is subject to
  49. change without notice. 
  50.  
  51.  
  52. WHAT IT DOES
  53. ------------
  54.  
  55.     GENERIC.ASM and GNRC52x.ASM are both simple to use ASseMbly language
  56. programs that YOU can ASseMble and can use to write virtually any message
  57. to your computer screen.
  58.  
  59.     SIX different .ASM files (and the related .COM files) are included:
  60.  
  61.     (1) GENERIC.ASM
  62.     (2) GNRC52X.ASM    --  allows a single message to be displayed on
  63.     the screen.
  64.  
  65.     (3) GENERIC1.ASM
  66.     (4) GNRC521 .ASM    --  allows you to display a main screen message,
  67.     along with two possible "ending" messages.
  68.  
  69.     (5) GENERIC2.ASM
  70.     (6) GNRC522 .ASM    --  allows you to display a main screen message,
  71.     and include three new screen messages.
  72.  
  73.     NOTE:  The only difference between the two sets of files  (GENERIC and
  74.     GNRC52x)  is that GNRC52x files are set up for 52-COLUMNS.
  75.  
  76.  
  77.     That's it!  Operation is extremely simple.
  78.  
  79.  
  80. STARTUP PROCEDURE
  81. -----------------
  82.  
  83.     (1) Make sure you have a copy of ASM.COM and LOAD.COM available.
  84.     These are necessary in order to ASseMble and LOAD these programs.
  85.  
  86.     (2) Copy GENERIC.ASM (or GNRC52X.ASM) to the drive containing ASM and
  87.     LOAD.
  88.  
  89.     (3) Use your word processor (For me, WordStar works extremely well.)
  90.     to CHANGE the sample GENERIC message to one of your own.
  91.  
  92.     NOTE:  This message can be anything from a REMINDER to a .DOC file
  93.     (or abbreviated .DOC file) or just about anything else.
  94.  
  95.     (4) Use the following notes to set up your file:
  96.  
  97.      a) NOTE:   As long as you enclose your message in single quotes, you
  98.     can print virtually anything you want on the screen.
  99.  
  100.      b) Use DB at the beginning of each message line in this file.
  101.  
  102.      c) Use CR,LF at the end of each line to be displayed on screen.
  103.  
  104.      d) If you need to include a single quote within the body of your
  105.     message, use APOS as shown in the following example:
  106.  
  107.     MESSAGE:   Don's dad doesn't work here.
  108.  
  109.     ASM LANG:
  110.     DB    'Don',APOS,'s dad doesn',APOS,'t work here.',0
  111.  
  112.      e) Always END the message with a ZERO (0).
  113.  
  114.      f) Use your imagination and search thru all of the .ASM files for
  115.     ideas.   EXPERIMENT!!   ENJOY!!
  116.  
  117.  
  118.         Happy programming!  
  119.  
  120.                 Rich Altman
  121.  
  122.                                     
  123.