--- nono/vm/vm_luna.cpp 2026/04/29 17:05:34 1.1.1.15 +++ nono/vm/vm_luna.cpp 2026/04/29 17:05:55 1.1.1.17 @@ -31,6 +31,9 @@ VM_LUNA::VM_LUNA(const char *name_) : inherited(name_) { + // 実時間に同期したほうが便利。 + gConfig->SetDefault("clock-sync", "real"); + // RTC epoch は NetBSD/luna68k, OpenBSD/luna88k をデフォルトにしておく。 gConfig->SetDefault("rtc-epoch-year", 1970); @@ -41,7 +44,7 @@ VM_LUNA::VM_LUNA(const char *name_) NEWDV(LCD, new LCDDevice()); NEWDV(MPU64180, new MPU64180Device()); NEWDV(NMI, new NMIDevice()); - NEWDV(Renderer, new LunaRenderer()); + NEWDV(Renderer, new LunaVideoRenderer()); NEWDV(XPbus, new XPbusDevice()); }