mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-15 00:31:43 +00:00
9 lines
161 B
C
9 lines
161 B
C
|
#include "pspmath.h"
|
||
|
|
||
|
void vfpu_zero_vector(ScePspFVector4 *v) {
|
||
|
__asm__ volatile (
|
||
|
"vzero.t C000\n"
|
||
|
"sv.q C000, %0\n"
|
||
|
: "+m"(*v));
|
||
|
}
|