--- nono/vm/vm.cpp 2026/04/29 17:05:25 1.1.1.11 +++ nono/vm/vm.cpp 2026/04/29 17:05:29 1.1.1.12 @@ -12,9 +12,6 @@ #include "debugger.h" #include "mainapp.h" #include "mainbus.h" -#include "mainram.h" -#include "mpu.h" -#include "power.h" #include "scheduler.h" #include "signalthread.h" #include "syncer.h" @@ -112,6 +109,12 @@ VM::Init() return false; } + // イベントが出揃ったのでスケジューラモニタの行数を確定。 + auto scheduler = dynamic_cast(pScheduler.get()); + if (scheduler->Init2() == false) { + return false; + } + return true; }