--- nono/vm/syncer.h 2026/04/29 17:05:17 1.1.1.1 +++ nono/vm/syncer.h 2026/04/29 17:05:25 1.1.1.2 @@ -16,9 +16,6 @@ #include "monitor.h" #include "stopwatch.h" -class MainbusDevice; -class MainRAMDevice; - class Syncer : public Device { using inherited = Device; @@ -107,7 +104,7 @@ class Syncer : public Device void SyncCallback(Event& ev); // 動作モード変更メッセージ - void ChangeModeCallback(MessageID, uint32); + void ChangeModeMessage(MessageID, uint32); // 同期処理 void DoSync(); @@ -144,9 +141,6 @@ class Syncer : public Device uint64 last_perf_rtime {}; // 前回測定時の実経過時間 uint64 last_perf_vtime {}; // 前回測定時の仮想経過時間 - MainbusDevice *mainbus {}; - MainRAMDevice *mainram {}; - // 同期イベント Event sync_event { this }; };