home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / BEEHIVE / ZSUS / Z3HELP-6.LBR / ZA.LBR / Z33FILL.HZP / Z33FILL.HLP
Text File  |  2000-06-30  |  2KB  |  40 lines

  1. ;
  2.                                 Z33FILL.COM                                   
  3.  
  4.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  5. Z33FILL.COM    1k (8)    2031  1.0d       Fred Haines 3/88         Z3COM8
  6. Z33FILL.CIM    1k (8)    EC1D  1.0d       Fred Haines 3/88         Z3COM8
  7.  
  8.   1- Syntax/Options  2- Notes                                                 
  9.  
  10.  
  11.    Z33FILL fills  memory from  a starting address to  an ending address with a 
  12. single byte, all three specified from the command line in hexadecimal.  It may
  13. be linked to run in high memory on ZCPR33  systems or at TPA on ZCPR3 systems,
  14. and is self-renaming.   It reports activity only if the quiet flag is not set.
  15. It will accept any punctuation other than the semicolon command separator as a
  16. delimiter between the parameters.
  17. :1
  18.  
  19.  
  20.    Syntax:  FILL ssss eeee [bb]
  21.  
  22. ...where  SSSS is the starting  address,  EEEE the ending address,  and BB the 
  23. byte to be filled (defaults to 00h),  with all values in hexadecimal notation.  
  24. The program  fills memory from  the starting  address up  to and including the 
  25. ending address with  a single byte,  all three values specified on the command 
  26. line.  BB defaults to zero if not specified.
  27.      
  28. :2
  29.  
  30.  
  31. Z33FILL Notes:
  32.  
  33.    a. Version 1.0d eliminates the program banner unless help is requested, and
  34.       made the report of memory filled dependent upon quiet flag - if quiet is
  35.       set, you see nothing  at all.   Introduced several economies of code and
  36.       the syntax of the ending address.   If,  under the influence  of DDT and 
  37.       other debuggers, you type FILL 0900 09FF 1A  (or even FILL 0900,09FF,1A, 
  38.       with commas or any other punctuation) you will  fill up to and including
  39.       09FF, and FILL 0900 0900 1A will fill the single byte at 0900h. 
  40.