mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-26 05:41:24 +00:00
9 lines
215 B
C
9 lines
215 B
C
|
#include "pspmath.h"
|
||
|
|
||
|
void vfpu_quaternion_identity(ScePspQuatMatrix *q) {
|
||
|
__asm__ volatile (
|
||
|
"vidt.q C030\n" // column is important here, we need the w component set to 1
|
||
|
"sv.q C030, %0\n"
|
||
|
: "+m"(*q));
|
||
|
}
|