News:

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

String macros

Started by Neil, June 21, 2008, 12:28:16 PM

Previous topic - Next topic

Neil

What's the difference between print ustr$(eax) & print str$(eax), they both seem to do the same thing?

PBrennick

The difference is ustr$ is for 'unsigned' DWORDS. (ultoa as opposed to dwtoa).

-- Paul
The GeneSys Project is available from:
The Repository or My crappy website

Neil

Thanks Paul,

I'm learning a bit more every day.