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.| Converted from CHM to HTML with chm2web Pro 2.85 (unicode) |