Added support for segment wrap-around in 8086/8088 real-mode (all stack operations, instruction fetches, and operand accesses should wrap now); real-mode wrap-around on newer processors should trigger a GP fault instead
This commit is contained in:
parent
d7dd746e2c
commit
6a3f7f4a5d
15 changed files with 3156 additions and 2906 deletions
|
|
@ -3776,7 +3776,7 @@ class DebuggerX86 extends Debugger {
|
|||
} while (dbgAddrIns.addr != dbgAddr.addr);
|
||||
}
|
||||
|
||||
sLine += Str.pad(sBytes, dbgAddrIns.fAddr32? 24 : 16);
|
||||
sLine += Str.pad(sBytes, dbgAddrIns.fAddr32? 25 : 17);
|
||||
sLine += Str.pad(sOpcode, 8);
|
||||
if (sOperands) sLine += ' ' + sOperands;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue