News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

64-bit int display macro?

Started by dedndave, May 06, 2009, 02:05:07 AM

Previous topic - Next topic

dedndave

is there a macro to display 64-bit unsigned integers (EDX:EAX) ?

GregL

Dave,

There is uqword$ and sqword$ which use msvcrt.dll.  If you have a problem with that, they can easily be modified to use wsprintf instead of sprintf by changing 'crt_sprintf' to 'wsprintf' in the macros, those functions have the same parameters.  If I remember correctly, I tested them with EDX:EAX.


dedndave

many thanks, Greg
perfect  :U