summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/arm/skyeye_common/vfp/vfp.h24
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);
88u32 vfp_double_cpdo(ARMul_State* state, u32 inst, u32 fpscr); 88u32 vfp_double_cpdo(ARMul_State* state, u32 inst, u32 fpscr);
89 89
90/* MRC */ 90/* MRC */
91inline void VMRS(ARMul_State * state, ARMword reg, ARMword Rt, ARMword *value); 91void VMRS(ARMul_State * state, ARMword reg, ARMword Rt, ARMword *value);
92inline void VMOVBRS(ARMul_State * state, ARMword to_arm, ARMword t, ARMword n, ARMword *value); 92void VMOVBRS(ARMul_State * state, ARMword to_arm, ARMword t, ARMword n, ARMword *value);
93inline void VMOVBRRD(ARMul_State * state, ARMword to_arm, ARMword t, ARMword t2, ARMword n, ARMword *value1, ARMword *value2); 93void VMOVBRRD(ARMul_State * state, ARMword to_arm, ARMword t, ARMword t2, ARMword n, ARMword *value1, ARMword *value2);
94inline void VMOVI(ARMul_State * state, ARMword single, ARMword d, ARMword imm); 94void VMOVI(ARMul_State * state, ARMword single, ARMword d, ARMword imm);
95inline void VMOVR(ARMul_State * state, ARMword single, ARMword d, ARMword imm); 95void VMOVR(ARMul_State * state, ARMword single, ARMword d, ARMword imm);
96/* MCR */ 96/* MCR */
97inline void VMSR(ARMul_State * state, ARMword reg, ARMword Rt); 97void VMSR(ARMul_State * state, ARMword reg, ARMword Rt);
98/* STC */ 98/* STC */
99inline int VSTM(ARMul_State * state, int type, ARMword instr, ARMword* value); 99int VSTM(ARMul_State * state, int type, ARMword instr, ARMword* value);
100inline int VPUSH(ARMul_State * state, int type, ARMword instr, ARMword* value); 100int VPUSH(ARMul_State * state, int type, ARMword instr, ARMword* value);
101inline int VSTR(ARMul_State * state, int type, ARMword instr, ARMword* value); 101int VSTR(ARMul_State * state, int type, ARMword instr, ARMword* value);
102/* LDC */ 102/* LDC */
103inline int VLDM(ARMul_State * state, int type, ARMword instr, ARMword value); 103int VLDM(ARMul_State * state, int type, ARMword instr, ARMword value);
104inline int VPOP(ARMul_State * state, int type, ARMword instr, ARMword value); 104int VPOP(ARMul_State * state, int type, ARMword instr, ARMword value);
105inline int VLDR(ARMul_State * state, int type, ARMword instr, ARMword value); 105int VLDR(ARMul_State * state, int type, ARMword instr, ARMword value);
106 106
107#ifdef __cplusplus 107#ifdef __cplusplus
108 } 108 }