--- nono/vm/vm_x68k.h 2026/04/29 17:04:50 1.1.1.5 +++ nono/vm/vm_x68k.h 2026/04/29 17:04:53 1.1.1.6 @@ -26,6 +26,9 @@ class VM_X68030 final : public VM // MPU の RESET 命令によるリセット void ResetByMPU() override; + // ブートページを切り替える。 + void SwitchBootPage(Device *parent, bool isrom) override; + private: // 電源ボタンの状態。オンなら true。 bool power_button {}; @@ -41,6 +44,9 @@ class VM_RXZ final : public VM // 電源ボタンを押す。 void PowerButton() override; + // ブートページを切り替える。 + void SwitchBootPage(Device *parent, bool isrom) override; + private: std::unique_ptr human68k {}; };