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?
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
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