diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/arm/skyeye_common/vfp/vfp.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/core/arm/skyeye_common/vfp/vfp.h b/src/core/arm/skyeye_common/vfp/vfp.h index ed627d41f..7256701f3 100644 --- a/src/core/arm/skyeye_common/vfp/vfp.h +++ b/src/core/arm/skyeye_common/vfp/vfp.h | |||
| @@ -88,21 +88,21 @@ u32 vfp_single_cpdo(ARMul_State* state, u32 inst, u32 fpscr); | |||
| 88 | u32 vfp_double_cpdo(ARMul_State* state, u32 inst, u32 fpscr); | 88 | u32 vfp_double_cpdo(ARMul_State* state, u32 inst, u32 fpscr); |
| 89 | 89 | ||
| 90 | /* MRC */ | 90 | /* MRC */ |
| 91 | inline void VMRS(ARMul_State * state, ARMword reg, ARMword Rt, ARMword *value); | 91 | void VMRS(ARMul_State * state, ARMword reg, ARMword Rt, ARMword *value); |
| 92 | inline void VMOVBRS(ARMul_State * state, ARMword to_arm, ARMword t, ARMword n, ARMword *value); | 92 | void VMOVBRS(ARMul_State * state, ARMword to_arm, ARMword t, ARMword n, ARMword *value); |
| 93 | inline void VMOVBRRD(ARMul_State * state, ARMword to_arm, ARMword t, ARMword t2, ARMword n, ARMword *value1, ARMword *value2); | 93 | void VMOVBRRD(ARMul_State * state, ARMword to_arm, ARMword t, ARMword t2, ARMword n, ARMword *value1, ARMword *value2); |
| 94 | inline void VMOVI(ARMul_State * state, ARMword single, ARMword d, ARMword imm); | 94 | void VMOVI(ARMul_State * state, ARMword single, ARMword d, ARMword imm); |
| 95 | inline void VMOVR(ARMul_State * state, ARMword single, ARMword d, ARMword imm); | 95 | void VMOVR(ARMul_State * state, ARMword single, ARMword d, ARMword imm); |
| 96 | /* MCR */ | 96 | /* MCR */ |
| 97 | inline void VMSR(ARMul_State * state, ARMword reg, ARMword Rt); | 97 | void VMSR(ARMul_State * state, ARMword reg, ARMword Rt); |
| 98 | /* STC */ | 98 | /* STC */ |
| 99 | inline int VSTM(ARMul_State * state, int type, ARMword instr, ARMword* value); | 99 | int VSTM(ARMul_State * state, int type, ARMword instr, ARMword* value); |
| 100 | inline int VPUSH(ARMul_State * state, int type, ARMword instr, ARMword* value); | 100 | int VPUSH(ARMul_State * state, int type, ARMword instr, ARMword* value); |
| 101 | inline int VSTR(ARMul_State * state, int type, ARMword instr, ARMword* value); | 101 | int VSTR(ARMul_State * state, int type, ARMword instr, ARMword* value); |
| 102 | /* LDC */ | 102 | /* LDC */ |
| 103 | inline int VLDM(ARMul_State * state, int type, ARMword instr, ARMword value); | 103 | int VLDM(ARMul_State * state, int type, ARMword instr, ARMword value); |
| 104 | inline int VPOP(ARMul_State * state, int type, ARMword instr, ARMword value); | 104 | int VPOP(ARMul_State * state, int type, ARMword instr, ARMword value); |
| 105 | inline int VLDR(ARMul_State * state, int type, ARMword instr, ARMword value); | 105 | int VLDR(ARMul_State * state, int type, ARMword instr, ARMword value); |
| 106 | 106 | ||
| 107 | #ifdef __cplusplus | 107 | #ifdef __cplusplus |
| 108 | } | 108 | } |