WriteInt PROC
Writes a signed 32-bit decimal number to standard
output in decimal format with a leading sign and no leading
zeros.
Call args: EAX = signed number to write Return arg: None Example: mov eax,216543 call WriteInt Output: +216543NOTES: To write an unsigned integer, use the WriteDec procedure.
Converted from CHM to HTML with chm2web Pro 2.85 (unicode) |