fixed missing immediate disassembling

This commit is contained in:
thrust26 2021-03-23 22:11:28 +01:00
parent fbf2271e73
commit 8be8135650
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ bool CartDebug::disassembleAddr(uInt16 address, bool force)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
bool CartDebug::disassemblePC(bool force) bool CartDebug::disassemblePC(bool force)
{ {
return (disassembleAddr(myDebugger.cpuDebug().pc())); return (disassembleAddr(myDebugger.cpuDebug().pc(), force));
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -