port for intel x86 android phones??
|
09-11-2013, 07:02 AM
Post: #68
|
|||
|
|||
RE: port for intel x86 android phones??
ddsdadashi: are you using a compiler? If yes, try putting this in the middle of Core/MIPS/x86/CompVFPU.cpp:
#undef CONDITIONAL_DISABLE #define CONDITIONAL_DISABLE { fpr.ReleaseSpillLocks(); Comp_Generic(op); return; } A good place is right above: void Jit::Comp_Vf2i(MIPSOpcode op) { If that does not fix it, try reverting that change, and change the CONDITIONAL_DISABLE at the top from: // #define CONDITIONAL_DISABLE { fpr.ReleaseSpillLocks(); Comp_Generic(op); return; } #define CONDITIONAL_DISABLE ; To: #define CONDITIONAL_DISABLE { fpr.ReleaseSpillLocks(); Comp_Generic(op); return; } // #define CONDITIONAL_DISABLE ; What this will accomplish is finding whether it's in the first half of CompVFPU, the second half, or neither. If you have more time, you can go to 1/4, and narrow it down more. If neither of them fix it, it must be in CompFPU somewhere. -[Unknown] |
|||
« Next Oldest | Next Newest »
|