mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-24 20:37:52 -05:00
- removed unused stubbed out code
- fixed some compiler issues with xscale_copro when porting code to Windows - fixed some #include's
This commit is contained in:
@ -84,8 +84,8 @@ void vfp_put_float(ARMul_State * state, int32_t val, unsigned int reg);
|
||||
uint64_t vfp_get_double(ARMul_State * state, unsigned int reg);
|
||||
void vfp_put_double(ARMul_State * state, uint64_t val, unsigned int reg);
|
||||
void vfp_raise_exceptions(ARMul_State * state, uint32_t exceptions, uint32_t inst, uint32_t fpscr);
|
||||
extern uint32_t vfp_single_cpdo(ARMul_State * state, uint32_t inst, uint32_t fpscr);
|
||||
extern uint32_t vfp_double_cpdo(ARMul_State * state, uint32_t inst, uint32_t fpscr);
|
||||
u32 vfp_single_cpdo(ARMul_State* state, u32 inst, u32 fpscr);
|
||||
u32 vfp_double_cpdo(ARMul_State* state, u32 inst, u32 fpscr);
|
||||
|
||||
/* MRC */
|
||||
inline void VMRS(ARMul_State * state, ARMword reg, ARMword Rt, ARMword *value);
|
||||
|
@ -51,8 +51,9 @@
|
||||
* ===========================================================================
|
||||
*/
|
||||
|
||||
#include "vfp_helper.h"
|
||||
#include "asm_vfp.h"
|
||||
#include "core/arm/interpreter/vfp/vfp.h"
|
||||
#include "core/arm/interpreter/vfp/vfp_helper.h"
|
||||
#include "core/arm/interpreter/vfp/asm_vfp.h"
|
||||
|
||||
static struct vfp_double vfp_double_default_qnan = {
|
||||
//.exponent = 2047,
|
||||
|
@ -51,8 +51,9 @@
|
||||
* ===========================================================================
|
||||
*/
|
||||
|
||||
#include "vfp_helper.h"
|
||||
#include "asm_vfp.h"
|
||||
#include "core/arm/interpreter/vfp/vfp_helper.h"
|
||||
#include "core/arm/interpreter/vfp/asm_vfp.h"
|
||||
#include "core/arm/interpreter/vfp/vfp.h"
|
||||
|
||||
static struct vfp_single vfp_single_default_qnan = {
|
||||
//.exponent = 255,
|
||||
|
Reference in New Issue
Block a user