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

5 lines
120 B
C

#include "pspmath.h"
void vfpu_srand(unsigned int x) {
__asm__ volatile ( "mtv %0, S000\n vrnds.s S000" : "=r"(x));
}