Fixed space handling on iOS 9.1

This commit is contained in:
Jeff Parsons 2015-12-01 19:22:03 -08:00
commit bf75b8a059
5 changed files with 136 additions and 50 deletions

View file

@ -2600,8 +2600,9 @@ X86.opCALLF = function()
*/
X86.opWAIT = function()
{
this.printMessage("WAIT not implemented");
this.nStepCycles--;
if (!this.fpu || !this.fpu.opWAIT()) {
this.nStepCycles -= 3; // X86FPU.opWAIT() is required to charge some number of cycles if it returns true
}
};
/**