home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / a293_1 / !AForth_Docs_Semantics_Toolkit < prev    next >
Encoding:
Text File  |  1999-04-27  |  626 b   |  25 lines

  1.  
  2. Semantics for the Toolkit Extensions Word Set
  3.  
  4.  
  5. BYE ( -- )
  6. Exit Forth.
  7.  
  8.  
  9. WORDS  ( -- )
  10. List all word names in the current first word list of the search order.
  11.  
  12.  
  13. .S  ( i*w -- i*w )
  14. Display all numbers on the stack without corrupting it. The last number
  15. pushed onto the stack is displayed last.
  16.  
  17.  
  18. DUMP  ( addr u -- )
  19. Produce a memory dump of u bytes starting at addr. Each line contains 16 bytes. The maximum allowable value of u is 65535 (&7FFF hex).
  20.  
  21.  
  22. IDUMP  ( addr u -- )  RISCOS
  23. This is quite similar to DUMP, though u gives the number of instructions
  24. to disassemble. The maximum allowable value of u is 65535 (&7FFF hex).
  25.