WriteHex PROC

   Writes an unsigned 32-bit hexadecimal number to standard output in 8-digit hexadecimal format.
   Leading zeros are inserted if necessary.
   This procedure is useful for printing the result of a multi-double-word precision arithmetic operation.

Call args:  EAX = unsigned number to write

Return arg: None

Example:

      mov  eax,7FFFFh
      call WriteHex

Output:  0007FFFF
Notes: To write a WORD or BYTE in hex, use the WriteHexB procedure or the mShow macro.
       To write in binary, use the WriteBin procedure.
       To write an unsigned integer, use the WriteDec procedure.
       To write a signed integer, use the WriteInt procedure.
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)