mShowRegister MACRO regName, regValue

   Displays a 32-bit register's name and contents.
   To display 8-, 16-, and 32-bit registers and variables, use the mShow macro.

Parameters:

   regName  - Register's name.
   regValue - Register's value.

Example:

         pushfd       ;push flag register
         pop  eax     ;pop flags to EAX
         mShowRegister EFL, eax

         pushfd       ;push flag register
         pop  eax     ;pop flags to EAX

;Output: EFL=00000A86

Dependencies:

   Causes calls to the WriteString and WriteHex procedures.

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