summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorHedges <hedges@resync.pl>2018-08-07 04:01:24 +0200
committerbunnei <bunneidev@gmail.com>2018-08-07 04:01:24 +0200
commite2b74f635410891b4ab9c202ecdd83dfe05df239 (patch)
tree90cf31b4b0f60d86709bfec1a3c021056bd0a269 /src/core/core.h
parentMerge pull request #943 from lioncash/decl (diff)
downloadyuzu-e2b74f635410891b4ab9c202ecdd83dfe05df239.tar
yuzu-e2b74f635410891b4ab9c202ecdd83dfe05df239.tar.gz
yuzu-e2b74f635410891b4ab9c202ecdd83dfe05df239.tar.bz2
yuzu-e2b74f635410891b4ab9c202ecdd83dfe05df239.tar.lz
yuzu-e2b74f635410891b4ab9c202ecdd83dfe05df239.tar.xz
yuzu-e2b74f635410891b4ab9c202ecdd83dfe05df239.tar.zst
yuzu-e2b74f635410891b4ab9c202ecdd83dfe05df239.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index a3be88aa8..c8ca4b247 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -82,6 +82,17 @@ public:
*/
ResultStatus SingleStep();
+ /**
+ * Invalidate the CPU instruction caches
+ * This function should only be used by GDB Stub to support breakpoints, memory updates and
+ * step/continue commands.
+ */
+ void InvalidateCpuInstructionCaches() {
+ for (auto& cpu : cpu_cores) {
+ cpu->ArmInterface().ClearInstructionCache();
+ }
+ }
+
/// Shutdown the emulated system.
void Shutdown();