diff --git a/modules/pcjs/lib/x86cpu.js b/modules/pcjs/lib/x86cpu.js index 4f0e64e8f..c36a1498d 100644 --- a/modules/pcjs/lib/x86cpu.js +++ b/modules/pcjs/lib/x86cpu.js @@ -3700,7 +3700,7 @@ X86CPU.prototype.updateReg = function(sReg, nValue) } if (this.model < 80386) { if (sReg.length > 2) { - sReg = sReg.substr(0, 2); + sReg = sReg.substr(1, 2); } } else { if (sReg == "PS" || sReg.length > 2) {