home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / tcom / debugger / memedit.hlp < prev    next >
Text File  |  1989-12-05  |  1KB  |  43 lines

  1. MEMEDIT.HLP     Mike's Memory editor for F-PC 3.35
  2. Mike Mayo 9/13/89
  3.  
  4. This memory editor uses a dump utility, typically the standard DUMP, but
  5. optionally using a DUMPC@ other than standard.   Cursor keys move the cursor
  6. around the screen over the DUMP'ed data to select an address to edit.   You
  7. must then press <enter> to bring up an editing line for the selected
  8. location.
  9.  
  10.  
  11. These deferred words allow the editor to be patched e.g. for editing
  12. memory in some target processor's environment.
  13.  
  14. mec!      the word for storing a changed location
  15. medump    the dump utility to use
  16. medln     the one-line part of the dump utility
  17. nwidth    a value to select byte-wide or word-wide editing
  18.  
  19.  
  20. Words that change the display attributes of the data at the cursor
  21. cur>rev         cur>norm        cur>bold
  22.  
  23.  
  24. Words that move the cursor and/or the dump window
  25. curhome         curend          ^curhome        ^curend
  26. pgup            pgdn            ^pgup           ^pgdn
  27. curleft         curright         curdown         curup
  28.  
  29. metib   A buffer for keyboard input, used by CHANGE
  30.  
  31. change ( -- )  Edit the data at the current location,
  32.                and redisplay the line of dump data.
  33.  
  34. mem-edit ( a l -- )     The top level word.
  35.                         Takes address and length just like DUMP
  36.  
  37.  
  38. wEDIT is an example of how to make use of the deferred words.
  39.  
  40. To try out the memory editor enter .....
  41.         pad 128  mem-edit
  42.  
  43.