--- nono/debugger/debugger_m88xx0.cpp 2026/04/29 17:05:28 1.1.1.12 +++ nono/debugger/debugger_m88xx0.cpp 2026/04/29 17:05:32 1.1.1.13 @@ -329,7 +329,7 @@ DebuggerMD_m88xx0::ShowRegister(FILE *co if (MatchCMMUCmd(args[0], "ra", &cmmu_id)) { Monitor *mon = gMonitorManager->Find(ID_MONITOR_ATC(cmmu_id)); if (mon) { - parent->ShowMonitor(*mon); + parent->ShowMonitor(mon); return true; } goto notfound; @@ -340,7 +340,7 @@ DebuggerMD_m88xx0::ShowRegister(FILE *co if (MatchCMMUCmd(args[0], "rm", &cmmu_id)) { Monitor *mon = gMonitorManager->Find(ID_MONITOR_CMMU(cmmu_id)); if (mon) { - parent->ShowMonitor(*mon); + parent->ShowMonitor(mon); return true; } goto notfound;