diff options
Diffstat (limited to 'src/CP15.cpp')
-rw-r--r-- | src/CP15.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CP15.cpp b/src/CP15.cpp index e6e91c3..b24c1c1 100644 --- a/src/CP15.cpp +++ b/src/CP15.cpp @@ -257,9 +257,11 @@ void ARMv5::UpdatePURegions(bool update_all) void ARMv5::UpdateRegionTimings(u32 addrstart, u32 addrend) { + printf("initialising region timings %x %x\n", addrstart, addrend); addrstart >>= 12; addrend >>= 12; + if (addrend == 0xFFFFF) addrend++; for (u32 i = addrstart; i < addrend; i++) |