Some improvements for FOOTBALL, including support for the 386 LOADALL instruction
This commit is contained in:
parent
763b02794b
commit
a5b9e0cae7
27 changed files with 4431 additions and 3981 deletions
|
|
@ -4793,6 +4793,14 @@ if (DEBUGGER) {
|
|||
|
||||
if (typeCPU == null) typeCPU = type >> Debugger.TYPE_CPU_SHIFT;
|
||||
|
||||
if (iIns == Debugger.INS.LOADALL) {
|
||||
if (typeCPU == Debugger.CPU_80286) {
|
||||
sOperands = "[%800]";
|
||||
} else if (typeCPU == Debugger.CPU_80386) {
|
||||
sOperands = "ES:[" + (dbgAddr.fAddr32? 'E':'') + "DI]";
|
||||
}
|
||||
}
|
||||
|
||||
var typeSize = type & Debugger.TYPE_SIZE;
|
||||
if (typeSize == Debugger.TYPE_NONE) {
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue