Compare commits

...

1 Commits

Author SHA1 Message Date
tech-ticks
8ad712b044 hle: kernel: Invalidate icache in UnmapProcessMemory (fixes #8174) 2022-04-08 21:31:56 +02:00

View File

@@ -563,6 +563,8 @@ ResultCode KPageTable::UnmapProcessMemory(VAddr dst_addr, std::size_t size,
block_manager->Update(dst_addr, num_pages, KMemoryState::Free, KMemoryPermission::None,
KMemoryAttribute::None);
system.InvalidateCpuInstructionCaches();
return ResultSuccess;
}