Updated reset to reset page tables, fixed RET[F]n instructions, and added some Debugger improvements
This commit is contained in:
parent
1b28cce0fd
commit
f8d7c5d518
5 changed files with 47 additions and 37 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Reference in a new issue