Re: Does BASM automagicaly pick up float type?
- From: "Frederico Pissarra" <me@xxxxxxxxxxx>
- Date: Mon, 22 May 2006 13:17:47 -0300
"chrisj" <a@xxx> escreveu na mensagem
news:446fc175@xxxxxxxxxxxxxxxxxxxxxxxxx
Given...
type Myrec = record
mydouble: double;
mysingle: single;
end;
will the compiler pick up the corect load target size when i do this..
fld [eax.TMyrec.mydouble]
fld [eax.TMyrec.mysingle]
cheers..
chris
Chris....
In my experience, no! you must supply the pointer size:
fld qword ptr [eax.TMyrec.mydouble]
fld dword ptr [eax.TMyrec.mysingle]
[]s
Fred
.
- References:
- Does BASM automagicaly pick up float type?
- From: chrisj
- Does BASM automagicaly pick up float type?
- Prev by Date: Re: nulls
- Next by Date: Re: Does BASM automagicaly pick up float type?
- Previous by thread: Re: Does BASM automagicaly pick up float type?
- Next by thread: Re: Does BASM automagicaly pick up float type?
- Index(es):
Relevant Pages
|