--- nono/vm/goldfish_timer.h 2026/04/29 17:05:29 1.1.1.2 +++ nono/vm/goldfish_timer.h 2026/04/29 17:05:33 1.1.1.3 @@ -10,7 +10,6 @@ #include "device.h" #include "event.h" -#include "monitor.h" class GFRTCDevice; class InterruptDevice; @@ -60,14 +59,14 @@ class GFTimerDevice : public IODevice // 実時間同期用 uint64 mtime_epoch {}; // 調整実時間軸の起点(仮想時刻) - uint64 mtime {}; // 自身の調整実時間 + uint64 mtime {}; // 自身の調整実時間。(mtime_epoch からの経過時間) bool intr_enable {}; // 割り込み許可 bool intr_assert {}; // 割り込み発生 Event event { this }; - Monitor monitor { this }; + Monitor *monitor {}; GFRTCDevice *gfrtc {}; InterruptDevice *interrupt {};