--- nono/vm/vm_x68k.h 2026/04/29 17:05:10 1.1.1.8 +++ nono/vm/vm_x68k.h 2026/04/29 17:05:25 1.1.1.11 @@ -19,24 +19,6 @@ class VM_X68030 final : public VM VM_X68030(); ~VM_X68030() override; - // 電源ボタンを押す - void PowerButton() override; - - // 電源ボタンの状態を取得。オンなら true。 - bool IsPowerButton() const override { return power_button; } - - // MPU の RESET 命令によるリセット - void ResetByMPU() override; - - protected: - // ブートページを切り替える。 - void SwitchBootPage(Device *parent, bool isrom) override; - private: - // 電源ボタンの状態。オンなら true。 - bool power_button {}; - std::unique_ptr pHuman68k {}; - std::unique_ptr pIPLROM0 {}; - std::unique_ptr pXIOSpace {}; };