Updated reset to reset page tables, fixed RET[F]n instructions, and added some Debugger improvements

This commit is contained in:
Jeff Parsons 2015-07-23 16:58:01 -07:00
commit f8d7c5d518
5 changed files with 47 additions and 37 deletions

View file

@ -1233,6 +1233,7 @@ X86CPU.prototype.resetRegs = function()
this.aRegTR = new Array(8); // Test Registers TR0-TR7
this.segFS = new X86Seg(this, X86Seg.ID.DATA, "FS");
this.segGS = new X86Seg(this, X86Seg.ID.DATA, "GS");
this.disablePageBlocks();
}
this.segNULL = new X86Seg(this, X86Seg.ID.NULL, "NULL");