Hi,
I used this 'assume' macro with previous Fasm versions:
macro assume reg, struc
{ local _reg
virtual at reg
reg equ _reg
reg struc
end virtual
restore reg }
And this syntax:
assume ebx, MYSTRUC
...
mov [ebx.StrucMember], whatever
But the macro doesn't work any more with 1.52, Fasm says I'm using a reserved word or something.
So I would like to know if someone has come to a new version of this useful macro that can be used with the same syntax. I've tried some examples found in the forum, but none of them worked for me.
I would really appreciate some help, I'm not very skilled in writing Fasm macros.
TIA,