home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / jsage / zsus / z3help / p.lbr / POKECOM.HZP / POKECOM.HLP
Encoding:
Text File  |  1991-11-18  |  2.0 KB  |  50 lines

  1. ;
  2.                                    POKE.COM                                   
  3.  
  4.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  5. POKE3.COM      2k (9)    3008  1.2        Bruce Morgen 9/91        Z3COM16
  6. POKE4.COM      2k (12)   142D  1.2        Bruce Morgen 9/91        Z3COM16
  7.  
  8.   1- Syntax  2- Notes  3- Examples of Use                                     
  9.  
  10.    POKE.COM is a transient  replacement for the  RCP-based command of the same
  11. name, for Z33/Z34/NZCOM/Z3PLUS systems where the RCP space has been omitted to
  12. maximize TPA.  In addition to emulating its model's syntax,  POKE.COM observes
  13. the host system's quiet flag for all  displays  other than the help screen and
  14. error messages, unless the local quiet byte  at ENTRY+2  (102h  under  DDT for
  15. Type 3,  202h under DDT for Type 4) is patched to a non-zero value,  in  which
  16. case it is  "quiet"  regardless of the system's edicts.   Only Type 3 (@9800h)
  17. and Type 4 versions are in the  distribution  LBR  -  a Type 3 at 100h doesn't
  18. seem terribly useful, but it would work as expected.
  19.  
  20.    Original (9/11/88) by Bruce Morgen.
  21. :1
  22.  Syntax    POKE <addr> nn[ nn nn nn....]
  23.            
  24.            Where "addr" is the target address and
  25.            "nn" is any hex byte or word value.  Hex
  26.            numbers of three or more digits are poked
  27.            as words in LSB-first (Intel) order.
  28.  
  29.  
  30.       (or) POKE <addr> "any ASCII characters<cr>
  31.  
  32.            The ascii string starts after the '"' and 
  33.            will be shifted to upper case.
  34. :2
  35.  POKE.COM Notes 
  36.  
  37.    a. Vs 1.2 updates (9/21/91, Bruce Morgen):
  38.       - Fixed bug that wouldn't allow poking an ASCII string that started with
  39.         a colon (after the opening quote), corrected help screen.
  40.  
  41.    b. Vs 1.1 updates (7/12/91, Bruce Morgen):
  42.       - Now allows word-wide hex pokes,  useful for late-model "pointer" alias
  43.         parameters.
  44. :3
  45.  Examples of Use 
  46.  
  47.    a. POKE 100 C3 0B 01<cr>
  48.  
  49.    b. POKE 103 "Z3ENV<cr> 
  50.