home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / MISC / FPC355_5.ZIP / TCOM96.ZIP / TCOM / DEBUGGER / FTCHSTOR.HLP < prev    next >
Encoding:
Text File  |  1990-09-11  |  1.1 KB  |  36 lines

  1. FTCHSTOR.HLP    help file for FTCHSTOR.SEQ,
  2.                 the words that write and read target memory
  3.  
  4. t!   ( word target-addr -- )  write one target memory word
  5.  
  6. t!w  ( word target-addr -- )  write a word in the alternate register set
  7.  
  8. tc!  ( byte target-addr -- )  write one target memory byte
  9.  
  10. tc!w ( byte target-addr -- )  write a byte in the alternate register set
  11.  
  12. tfill ( A L B -- ) fill L bytes with value B from address A
  13.  
  14. t@   ( target-address -- w )  fetch one target memory word
  15.  
  16. t@w  ( target-address -- w )  fetch a word in the alternate register set
  17.  
  18. tc@  ( target-address -- b )  fetch one target memory byte
  19.  
  20. tc@w ( target-address -- b )  fetch a byte in the alternate register set
  21.  
  22.  
  23. tdump ( a n -- )  dump target memory bytes, from address a, length n
  24.  
  25. alt-tdump ( a n -- )  like tdump, but of the alternate register set
  26.  
  27. twdump ( addr len -- )  dump out target word contents
  28.  
  29. alt-twdump ( a n -- ) like twdump, but of the alternate register set
  30.  
  31.  
  32. tEDIT ( a n -- )  edit target byte memory
  33.  
  34. twEDIT ( a n -- )  edit target word memory
  35.  
  36.