Fix opcode 0x6A (PUSH imm8)

This commit is contained in:
Jeff Parsons 2015-07-09 18:28:22 -07:00
commit 74bb240255
128 changed files with 138 additions and 129 deletions

View file

@ -1432,7 +1432,7 @@ X86.opIMULn = function IMULn()
X86.opPUSH8 = function PUSH8()
{
if (BACKTRACK) this.backTrack.btiMemHi = 0;
this.pushWord(this.getIPByte());
this.pushWord(this.getIPDisp());
this.nStepCycles -= this.cycleCounts.nOpCyclesPushReg;
};