summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 58368fe3c..01e4faac8 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -457,6 +457,10 @@ void System::InvalidateCpuInstructionCaches() {
457 impl->kernel.InvalidateAllInstructionCaches(); 457 impl->kernel.InvalidateAllInstructionCaches();
458} 458}
459 459
460void System::InvalidateCpuInstructionCacheRange(VAddr addr, std::size_t size) {
461 impl->kernel.InvalidateCpuInstructionCacheRange(addr, size);
462}
463
460void System::Shutdown() { 464void System::Shutdown() {
461 impl->Shutdown(); 465 impl->Shutdown();
462} 466}