mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-12 23:44:06 +00:00
8 lines
161 B
C
8 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));
|
|
}
|