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: 0007FFFFNotes: To write a WORD or BYTE in hex, use the WriteHexB procedure or the mShow macro.
Converted from CHM to HTML with chm2web Pro 2.85 (unicode) |