The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: Neil on June 21, 2008, 12:28:16 PM

Title: String macros
Post by: Neil on June 21, 2008, 12:28:16 PM
What's the difference between print ustr$(eax) & print str$(eax), they both seem to do the same thing?
Title: Re: String macros
Post by: PBrennick on June 21, 2008, 12:38:51 PM
The difference is ustr$ is for 'unsigned' DWORDS. (ultoa as opposed to dwtoa).

-- Paul
Title: Re: String macros
Post by: Neil on June 21, 2008, 05:02:55 PM
Thanks Paul,

I'm learning a bit more every day.