mDump MACRO varName:REQ, useLabel

   Displays a variable, using its name and its attributes.
   If useLabel is nonblank, the variable name varName will be displayed.

Parameters:

   varName:REQ - A variable name
   useLabel - If nonblank, output the variable's name.
Otherwise, if blank, don't output the variable's name.

Example:

.data
var1 WORD 1,2,3,4,5
var2 DWORD 6,7,8

.code
main  PROC

      mDump var1        ;do not output name.

Output:

Dump of offset 00404000
-------------------------------
0001 0002 0003 0004 0005

      mDump var2, yes   ;output name.

Output:

Variable name: var2
Dump of offset 0040400A
-------------------------------
00000006  00000007  00000008

Dependencies:

   Uses macros mWrite and mDumpMem.

Converted from CHM to HTML with chm2web Pro 2.85 (unicode)