TBD function no longer needed

This commit is contained in:
Jeff Parsons 2015-04-30 14:08:10 -07:00 committed by jeffpar
commit f822efe1f0
4 changed files with 23 additions and 43 deletions

View file

@ -3379,22 +3379,6 @@ X86.fnXORw = function XORw(dst, src)
return this.setLogicResult(dst ^ src, this.dataType);
};
/**
* fnTBD(dst, src)
*
* @this {X86CPU}
* @param {number} dst
* @param {number} src
* @return {number}
*/
X86.fnTBD = function TBD(dst, src)
{
this.setIP(this.opLIP - this.segCS.base);
this.printMessage("unimplemented 80386 opcode", true);
this.stopCPU();
return dst;
};
/**
* fnGRPFault(dst, src)
*