mirror of https://github.com/stella-emu/stella.git
Printing of traps in debugger takes into account TIA read/write address.
This commit is contained in:
parent
b608c5bf88
commit
f280e31671
|
@ -551,8 +551,7 @@ string DebuggerParser::trapStatus(uInt32 addr, bool& enabled)
|
|||
else
|
||||
result += "none";
|
||||
|
||||
// TODO - technically, we should determine if the label is read or write
|
||||
const string& l = debugger.cartDebug().getLabel(addr, true);
|
||||
const string& l = debugger.cartDebug().getLabel(addr, !w);
|
||||
if(l != "") {
|
||||
result += " (";
|
||||
result += l;
|
||||
|
|
Loading…
Reference in New Issue