--- nono/vm/rp5c15.cpp 2026/04/29 17:04:39 1.1.1.4 +++ nono/vm/rp5c15.cpp 2026/04/29 17:04:42 1.1.1.5 @@ -5,6 +5,7 @@ // #include "rp5c15.h" +#include "mpu.h" #include // アラームは未実装 @@ -43,6 +44,8 @@ RP5C15Device::Read(uint32 addr) uint8 data; int n; + gMPU->AddCycle(29); // InsideOut p.135 + // バンクを展開する n = bank * 0x10 + addr; @@ -75,6 +78,8 @@ RP5C15Device::Write(uint32 addr, uint32 { int n; + gMPU->AddCycle(38); // InsideOut p.135 + // バンクを展開する n = bank * 0x10 + addr;