diff options
| author | WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> | 2020-10-23 00:39:29 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-23 00:39:29 +0100 | 
| commit | 8d70d0926c6307368398a894cbebfbdc0f538194 (patch) | |
| tree | 72774a626ff8a30850c36eba33fdac38962739cb /src/CP15.cpp | |
| parent | a8851a51f19577f153a3fa5d1021be5794f0921a (diff) | |
| parent | 65be1840f02a7499fa08178abcefddfefec6d9b0 (diff) | |
Merge branch 'master' into feature/zip-support
Diffstat (limited to 'src/CP15.cpp')
| -rw-r--r-- | src/CP15.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CP15.cpp b/src/CP15.cpp index f6476ab..3f9e79d 100644 --- a/src/CP15.cpp +++ b/src/CP15.cpp @@ -616,11 +616,11 @@ void ARMv5::CP15Write(u32 id, u32 val)      case 0xF00:          //printf("cache debug index register %08X\n", val);          return; -     +      case 0xF10:          //printf("cache debug instruction tag %08X\n", val);          return; -     +      case 0xF20:          //printf("cache debug data tag %08X\n", val);          return; @@ -632,7 +632,7 @@ void ARMv5::CP15Write(u32 id, u32 val)      case 0xF40:          //printf("cache debug data cache %08X\n", val);          return; -     +      }      if ((id & 0xF00) == 0xF00) // test/debug shit?  |