--- nono/m88xx0/m88100disasm.h 2026/04/29 17:04:34 1.1.1.2 +++ nono/m88xx0/m88100disasm.h 2026/04/29 17:04:41 1.1.1.3 @@ -13,21 +13,19 @@ class m88100disasm : public Disasm { using inherited = Disasm; public: - m88100disasm(DebuggerMD *m); + m88100disasm(DebuggerMD *md); ~m88100disasm() override; bool Exec(saddr_t laddr) override; private: - bool opt_alias = true; // いくつかの命令を別名にディスアセンブルする + bool opt_alias {}; // いくつかの命令を別名にディスアセンブルする - uint32 peek(); - uint32 fetch(); + uint32 peek(const saddr_t& laddr); - uint32 xip = 0; - uint32 phys_xip = 0; + uint32 xip {}; - uint32 opX = 0; + uint32 opX {}; std::string name {}; std::string arg0 {}; std::string arg1 {};