diff options
author | bunnei <bunneidev@gmail.com> | 2015-05-14 06:24:38 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-05-14 06:24:38 +0200 |
commit | e83bc5b7ee45ae24821c4cd185dd6a14dbd3b4d4 (patch) | |
tree | 779094b31066b60ab8739ce9aacc220315662cb8 | |
parent | Merge pull request #763 from bunnei/qt-fix-crash (diff) | |
download | yuzu-e83bc5b7ee45ae24821c4cd185dd6a14dbd3b4d4.tar yuzu-e83bc5b7ee45ae24821c4cd185dd6a14dbd3b4d4.tar.gz yuzu-e83bc5b7ee45ae24821c4cd185dd6a14dbd3b4d4.tar.bz2 yuzu-e83bc5b7ee45ae24821c4cd185dd6a14dbd3b4d4.tar.lz yuzu-e83bc5b7ee45ae24821c4cd185dd6a14dbd3b4d4.tar.xz yuzu-e83bc5b7ee45ae24821c4cd185dd6a14dbd3b4d4.tar.zst yuzu-e83bc5b7ee45ae24821c4cd185dd6a14dbd3b4d4.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/arm/interpreter/armsupp.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/arm/interpreter/armsupp.cpp b/src/core/arm/interpreter/armsupp.cpp index 15c6f595b..1b078dc71 100644 --- a/src/core/arm/interpreter/armsupp.cpp +++ b/src/core/arm/interpreter/armsupp.cpp @@ -454,8 +454,6 @@ void WriteCP15Register(ARMul_State* cpu, u32 value, u32 crn, u32 opcode_1, u32 c } else if (crn == 7 && opcode_1 == 0) { - LOG_WARNING(Core_ARM11, "Cache operations are not fully implemented."); - if (crm == 0 && opcode_2 == 4) { cpu->CP15[CP15_WAIT_FOR_INTERRUPT] = value; |