Sorry for such simple question, (learning assembly from few days) but i was browsing through books and couldnt find answer
what is a proper quick way to count 1/f where f is some float on x86 fpu
is it
fld dword [ebp+8]
fld1
fdivrp ; fdivrp st0 st1 ?
?
it is proper (im mean literally cause i am not sure as to fdivr args) or is some quickest simplest way ?
//EDIT
Is this a best way to div 1/f (or 1/sqrt(f) in classical fpu asm ? (without sse, and without carmack trick - I will try it l8er, now I'm tryin just do 'proper fpu' )