void sincos(float a, float &s, float &c) { _asm { fld a fsincos fstp dword ptr [c] fstp dword ptr [s] } }
float sinx, cosx; sincos(angle,sinx,cosx);