--- nono/vm/vm.h 2026/04/29 17:04:45 1.1.1.5 +++ nono/vm/vm.h 2026/04/29 17:04:50 1.1.1.6 @@ -44,7 +44,7 @@ class VM bool Create(); // 初期化 - bool Init(); + virtual bool Init(); // 設定の適用 bool Apply(); @@ -70,7 +70,7 @@ class VM void ResetHard(); // MPU の RESET 命令によるリセット - void ResetSoft(); + virtual void ResetByMPU() { } // BusErr デバイスを取得する BusErrDevice *GetBusErrDevice() const { return buserr.get(); }