diff options
| author | 2020-11-13 23:20:32 -0800 | |
|---|---|---|
| committer | 2020-11-29 01:31:52 -0800 | |
| commit | 63fd1bb50302867b233325f253b1e2abbc379875 (patch) | |
| tree | 65204a55cc87b2b4ef7260744ff96fabc813c9f6 /src/core/core.cpp | |
| parent | hle: kernel: time_manager: Avoid a crash on process exit. (diff) | |
| download | yuzu-63fd1bb50302867b233325f253b1e2abbc379875.tar.gz yuzu-63fd1bb50302867b233325f253b1e2abbc379875.tar.xz yuzu-63fd1bb50302867b233325f253b1e2abbc379875.zip | |
core: arm: Implement InvalidateCacheRange for CPU cache invalidation.
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 | } |