mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-26 05:41:24 +00:00
6 lines
120 B
C
6 lines
120 B
C
|
#include "pspmath.h"
|
||
|
|
||
|
void vfpu_srand(unsigned int x) {
|
||
|
__asm__ volatile ( "mtv %0, S000\n vrnds.s S000" : "=r"(x));
|
||
|
}
|