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