mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-26 22:01:13 +00:00
11 lines
294 B
C
11 lines
294 B
C
|
#include "pspmath.h"
|
||
|
|
||
|
void vfpu_scale_vector(ScePspFVector4 *vout, ScePspFVector4 *vin, float scale) {
|
||
|
__asm__ volatile (
|
||
|
"lv.q C000, %1\n"
|
||
|
"mtv %2, S010\n"
|
||
|
"vscl.t C000, C000, S010\n"
|
||
|
"sv.q C000, %0\n"
|
||
|
: "=m"(*vout) : "m"(*vin), "r"(scale));
|
||
|
}
|