mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
Add a simple /proc/cpuinfo that includes some info from CPUID.
This commit is contained in:
@@ -241,7 +241,7 @@ void MemoryManager::flushEntireTLB()
|
||||
|
||||
void MemoryManager::flushTLB(LinearAddress laddr)
|
||||
{
|
||||
asm volatile("invlpg %0": :"m" (*(char*)laddr.get()));
|
||||
asm volatile("invlpg %0": :"m" (*(char*)laddr.get()) : "memory");
|
||||
}
|
||||
|
||||
void MemoryManager::map_region_at_address(PageDirectory* page_directory, Region& region, LinearAddress laddr, bool user_allowed)
|
||||
|
||||
Reference in New Issue
Block a user