blob: f51b1d0f91255b9db8ee6ec830f7f41f9d2dbce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "PR/R4300.h"
#include "sys/asm.h"
#include "sys/regdef.h"
.text
LEAF(__osGetFpcCsr)
CFC1( v0, fcr31)
jr ra
#ifndef MODERN_CC
END(__osGetSR) # @bug: Should be __osGetFpcCsr
#else
END(__osGetFpcCsr)
#endif
|