- Code: Select all
#ifndef _WIN_32_VER
dgFloat32 dgAbsf(dgFloat32 x)
{
_asm fld x;
_asm fabs ;
_asm fstp x;
return x;
}
...
#endif
But how am I supposed to compile it? Since there seems to be only a Intel/Windows version of these functions.
Moderators: Sascha Willems, walaber
#ifndef _WIN_32_VER
dgFloat32 dgAbsf(dgFloat32 x)
{
_asm fld x;
_asm fabs ;
_asm fstp x;
return x;
}
...
#endif
Users browsing this forum: No registered users and 4 guests