home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / tcom / debugger / wdump.hlp < prev    next >
Text File  |  1989-11-17  |  762b  |  28 lines

  1. WDUMP.HLP      WDUMP is a word dump utility, similar to DUMP
  2.  
  3.  
  4. %DUMP@       ( A1 --- C1 )
  5.         A default setting for the deferred word DUMP@
  6.  
  7. DUMP@ ( -- w )
  8.         The function used by WDUMP to fetch 16-bit words.
  9.         It is deferred so that you can patch in any other 16-bit
  10.         fetch that you desire.
  11.  
  12. DLNw ( addr --- )
  13.         Dump one line, starting at addr, using the latest conditions
  14.         set by WDUMP.
  15.  
  16. LWDUMP ( S A L -- )
  17.         Dump words from segment S   address A   length L bytes
  18.  
  19. WDUMP  ( A L -- )
  20.         Dump words from the code segment, address A, length L bytes
  21.  
  22. YWDUMP ( A N -- )
  23.         Dump words from the head segment, address A, length L bytes
  24.  
  25. WDU ( addr -- addr+64 )
  26.         Dump 32 more words
  27.  
  28.