v1.19.2: Added support for timer Read-Back command, segment probes, and improved instruction restartability
This commit is contained in:
parent
0398afab84
commit
927a71d681
171 changed files with 9205 additions and 2121 deletions
|
|
@ -137,8 +137,10 @@ X86.opPUSHES = function PUSHES()
|
|||
*/
|
||||
X86.opPOPES = function POPES()
|
||||
{
|
||||
this.opLSP = this.regLSP;
|
||||
this.setES(this.popWord());
|
||||
this.nStepCycles -= this.cycleCounts.nOpCyclesPopReg;
|
||||
this.opLSP = X86.ADDR_INVALID;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -323,8 +325,10 @@ X86.opPUSHSS = function PUSHSS()
|
|||
*/
|
||||
X86.opPOPSS = function POPSS()
|
||||
{
|
||||
this.opLSP = this.regLSP;
|
||||
this.setSS(this.popWord());
|
||||
this.nStepCycles -= this.cycleCounts.nOpCyclesPopReg;
|
||||
this.opLSP = X86.ADDR_INVALID;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -411,8 +415,10 @@ X86.opPUSHDS = function PUSHDS()
|
|||
*/
|
||||
X86.opPOPDS = function POPDS()
|
||||
{
|
||||
this.opLSP = this.regLSP;
|
||||
this.setDS(this.popWord());
|
||||
this.nStepCycles -= this.cycleCounts.nOpCyclesPopReg;
|
||||
this.opLSP = X86.ADDR_INVALID;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue