home *** CD-ROM | disk | FTP | other *** search
/ Software Du Jour / SoftwareDuJour.iso / BUSINESS / DBASE / DB3TECH.ARC / MEMDUMP.DOC < prev    next >
Encoding:
Text File  |  1980-01-01  |  1.1 KB  |  37 lines

  1. PROGRAM NAME:    Memdump.ASM and Memdump.BIN
  2.  
  3. DESCRIPTION:   Memdump.BIN displays dBASE III memory variables in
  4. hexadecimal and ASCII formats.
  5.  
  6. ISSUE:    [Not published in TechNotes.]
  7.  
  8. SOFTWARE VERSIONS:  dBASE III Developer's Release
  9.                 DOS version 2.0 or higher
  10.  
  11. FUNCTION:  This program displays memory variables as they appear,
  12. byte for byte, in memory.  It prints the segment and offset
  13. address on the left side of the screen, followed by 16 bytes in
  14. hexadecimal, followed by the ASCII equivalent of the 16 bytes. 
  15. It displays eight lines every time it is called, beginning with
  16. the length descriptor of the memory variable passed to it as a
  17. parameter.
  18.  
  19. FILES NEEDED:  Memdump.ASM (Memdump.BIN)
  20.  
  21. SETUP INSTRUCTIONS:  From the dot prompt or from within a
  22. program, issue the following command:
  23.  
  24.     LOAD Memdump
  25.  
  26. Then set up memory variables, and call Memdump.
  27.  
  28.     STORE 'Hi there' TO mem1
  29.     STORE SQRT(100.4859) TO mem2
  30.     STORE .T. TO mem3
  31.  
  32.     CALL Memdump WITH mem1
  33.  
  34. Memdump will display the 128 bytes beginning with the length
  35. descriptor of mem1.
  36.  
  37.