dquakeplus/source/libpspmath/vfpu_fabsf.c
2022-02-08 16:49:56 -05:00

11 lines
206 B
C

#include "pspmath.h"
float vfpu_fabsf(float x) {
float result;
__asm__ volatile (
"mtv %1, S000\n"
"vmov.s S000, S000[|x|]\n"
"mfv %0, S000\n"
: "=r"(result) : "r"(x));
return result;
}