--- nono/debugger/debugger_hd64180.cpp 2026/04/29 17:05:32 1.1.1.4 +++ nono/debugger/debugger_hd64180.cpp 2026/04/29 17:05:49 1.1.1.5 @@ -292,7 +292,7 @@ DebuggerMD_hd64180::Disassemble(Debugger { hd64180disasm dis; if (dis.Exec(&mem) == false) { - return "dis.Exec() failed"; + return "dis.Exec() failed."; } // dis.bin は uint8 列なのでそのままダンプ。 @@ -346,3 +346,11 @@ DebuggerMD_hd64180::CondStr(const std::v // 条件命令ではない return ""; } + +// 命令ニーモニックに対するバイナリを文字列形式で返す。 +// 対応しない場合は "" を返す。cmd_bi 用。 +std::string +DebuggerMD_hd64180::ParseInst(const std::string& inst) const +{ + return ""; +}