--- nono/vm/goldfish_rtc.h 2026/04/29 17:05:37 1.1.1.3 +++ nono/vm/goldfish_rtc.h 2026/04/29 17:05:59 1.1.1.4 @@ -39,7 +39,7 @@ class GFRTCDevice : public RTCDevice void ResetHard(bool poweron) override; // モニタの下請け。(GFTimer から呼ばれる) - int MonitorUpdateRTC(TextScreen&, int y) const; + int MonitorScreenRTC(TextScreen&, int y) const; protected: // BusIO インタフェース @@ -79,6 +79,6 @@ class GFRTCDevice : public RTCDevice uint min; uint sec; - // TIME レジスタラッチ - uint64 time_nsec {}; + // TIME レジスタラッチ。Goldfish 仕様により 1[nsec] 単位。 + union64 time_nsec {}; };