--- nono/debugger/debugger_m680x0.h 2026/04/29 17:05:28 1.1.1.9 +++ nono/debugger/debugger_m680x0.h 2026/04/29 17:05:32 1.1.1.10 @@ -12,7 +12,7 @@ #include "debugger_private.h" #include "mpu680x0.h" -#include "m68030disasm.h" +#include "m680x0disasm.h" class DebuggerMD_m680x0 : public DebuggerMD { @@ -45,16 +45,18 @@ class DebuggerMD_m680x0 : public Debugge MPU680x0Device *cpu {}; // MPU デバイス m68kreg prev {}; // 前回のレジスタセットのコピー - const char *CondStr(const std::vector& ir); - bool IsOPcc(uint16 op); - bool IsDBcc(uint16 op); - bool IsCond(uint16 op); + static bool IsOPcc(uint16 op); + static bool IsDBcc(uint16 op); + static int IsFXcc(const std::vector& ir); + bool IsCond(uint16 op) const; + const char *CondStr(const std::vector& ir) const; static const HelpMessages HelpListReg; static const HelpMessages HelpReg; void ShowRegMain(FILE *); void ShowRegFPU(FILE *); - void ShowRegMMU(FILE *); + void ShowRegMMU30(FILE *); + void ShowRegMMU40(FILE *); void ShowRegATC(); void ShowRegOther();