Preliminary groundwork for FPU support
This commit is contained in:
parent
00116ced94
commit
0c6db1df46
18 changed files with 756 additions and 173 deletions
|
|
@ -945,6 +945,11 @@ X86.fnDIVw = function(dst, src)
|
|||
*/
|
||||
X86.fnESC = function(dst, src)
|
||||
{
|
||||
if (this.fpu) {
|
||||
this.fpu.fnFPU(this.bOpcode, this.bModRM, dst, src);
|
||||
this.stopCPU();
|
||||
}
|
||||
this.nStepCycles -= (this.regEA === X86.ADDR_INVALID? 2 : 8);
|
||||
return dst;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue