dquakeplus/source/libpspmath/vfpu_srand.c

6 lines
120 B
C
Raw Normal View History

2022-02-08 21:49:56 +00:00
#include "pspmath.h"
void vfpu_srand(unsigned int x) {
__asm__ volatile ( "mtv %0, S000\n vrnds.s S000" : "=r"(x));
}