--- nono/vm/mpu.cpp 2026/04/29 17:05:09 1.1.1.9 +++ nono/vm/mpu.cpp 2026/04/29 17:05:13 1.1.1.10 @@ -74,6 +74,11 @@ MPUDevice::PowerOff() void MPUDevice::TraceMessage(MessageID msgid, uint32 arg) { + // リセット中は SetTrace しない + if (resetting) { + return; + } + // デバッガから MPU のトレース状態を設定してくれと言われた SetTrace((bool)arg); }