mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-15 00:31:43 +00:00
8 lines
215 B
C
8 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));
|
|
}
|