mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-01-31 07:53:36 +08:00
core: arm: Implement InvalidateCacheRange for CPU cache invalidation.
This commit is contained in:
@@ -457,6 +457,10 @@ void System::InvalidateCpuInstructionCaches() {
|
||||
impl->kernel.InvalidateAllInstructionCaches();
|
||||
}
|
||||
|
||||
void System::InvalidateCpuInstructionCacheRange(VAddr addr, std::size_t size) {
|
||||
impl->kernel.InvalidateCpuInstructionCacheRange(addr, size);
|
||||
}
|
||||
|
||||
void System::Shutdown() {
|
||||
impl->Shutdown();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user