Files

17 lines
227 B
C++
Raw Permalink Normal View History

2010-03-29 09:26:19 +00:00
#include "Defines.h"
void fsqrt(float *a, float *b, float *c, float *d)
{
/*asm(
"fsqrt fr0,%0"
: "=&r"(*a)
);*/
}
void fsqrtRC(float *a, float *b, float *c, float *d)
{
/*asm(
"fsqrt. fr0,%0"
: "=&r"(*a)
);*/
}