WriteDec PROC

   Writes an unsigned 32-bit decimal number to standard output in decimal format with no leading zeros.

Call args:  EAX = unsigned number to write

Return arg: None

Example:

      mov  eax,123456
      call WriteDec

Output: 123456
Notes: To write a signed integer, use the WriteInt procedure.
       To write in hexadecimal, use the WriteHex procedure.
       To write in binary, use the WriteBin procedure.
       Use the mShow macro to display the contents of an 8-, 16-, or 32-bit variable or register in any combination of hexadecimal, signed decimal, unsigned decimal, or binary formats.
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)