Fixed SUB and SUBR operand order
This commit is contained in:
parent
5fe3eaec56
commit
a11ed78926
2 changed files with 11 additions and 10 deletions
|
|
@ -7748,6 +7748,7 @@ if (DEBUGGER) {
|
|||
}
|
||||
|
||||
var cLines = 0;
|
||||
var sInstruction;
|
||||
this.initAddrSize(dbgAddr, true);
|
||||
|
||||
while (cb > 0 && n--) {
|
||||
|
|
@ -7771,7 +7772,7 @@ if (DEBUGGER) {
|
|||
nSequence = null;
|
||||
}
|
||||
|
||||
var sInstruction = this.getInstruction(dbgAddr, sComment, nSequence);
|
||||
sInstruction = this.getInstruction(dbgAddr, sComment, nSequence);
|
||||
|
||||
/*
|
||||
* If getInstruction() reported that it did not process a complete instruction (via dbgAddr.fComplete),
|
||||
|
|
|
|||
Loading…
Reference in a new issue