diff options
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 4 |
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 | ||
| 460 | void System::InvalidateCpuInstructionCacheRange(VAddr addr, std::size_t size) { | ||
| 461 | impl->kernel.InvalidateCpuInstructionCacheRange(addr, size); | ||
| 462 | } | ||
| 463 | |||
| 460 | void System::Shutdown() { | 464 | void System::Shutdown() { |
| 461 | impl->Shutdown(); | 465 | impl->Shutdown(); |
| 462 | } | 466 | } |