dquakeplus/source/libpspmath/vfpu_sqrtf.c

12 lines
201 B
C
Raw Normal View History

2022-02-08 21:49:56 +00:00
#include "pspmath.h"
float vfpu_sqrtf(float x) {
float result;
__asm__ volatile (
"mtv %1, S000\n"
"vsqrt.s S000, S000\n"
"mfv %0, S000\n"
: "=r"(result) : "r"(x));
return result;
}