Corrected frame size for 32-bit INT gates, fixed BT/BTC/BTR/BTS instructions for bit indexes > 31, and disabled the Debugger's IF clear warning when IOPL < CPL
This commit is contained in:
parent
ee2f5ff761
commit
3f52d18182
5 changed files with 191 additions and 21 deletions
|
|
@ -3922,6 +3922,7 @@ X86CPU.prototype.popWord = function()
|
|||
*/
|
||||
X86CPU.prototype.pushData = function(d, size)
|
||||
{
|
||||
this.assert(size == 2 || size == 4);
|
||||
this.regLSP = (this.regLSP - size)|0;
|
||||
/*
|
||||
* Properly comparing regLSP to regLSPLimitLow would normally require coercing both to unsigned
|
||||
|
|
|
|||
Loading…
Reference in a new issue