The MASM Forum Archive 2004 to 2012

Project Support Forums => GoAsm Assembler and Tools => Topic started by: ecube on June 04, 2010, 01:06:03 PM

Title: Type indicators
Post by: ecube on June 04, 2010, 01:06:03 PM
i've read previous posts on 32bit/64bit in harmony code, and I didn't find the answer for my issue below

Testf FRAME a1

cmp [a1],5    <-----------this needs a size indication infront(Q,D) etc...
ENDF

I want to use this function for both 64bit and 32bit, short of using the #IF stuff and writing the function twice, any other way?
Title: Re: Type indicators
Post by: 1rDirEctoALgran0 on June 04, 2010, 07:35:33 PM
I think to a possible usage of the S variable.
I don't remember if there is a better way to manage 32/64-bit... :red

cmp S[a1],5

Of course the S must be initialized.


Patrick
Title: Re: Type indicators
Post by: wjr on June 05, 2010, 08:33:09 PM
Similar to S, I believe another variable P is in the works for such a case:
http://www.masm32.com/board/index.php?topic=13127.0

Another way, depending upon register availability and other optimization issues, would split things up with:

mov rax,[a1]
;
;
cmp rax,5