svc: Use more correct values for GetInfo MapRegion and NewMapRegion.

This commit is contained in:
bunnei
2018-03-14 22:09:22 -04:00
parent 8581404482
commit 34a29ad051
3 changed files with 5 additions and 29 deletions

View File

@ -395,19 +395,4 @@ u64 VMManager::GetAddressSpaceSize() {
return MAX_ADDRESS;
}
VAddr VMManager::GetMapRegionBaseAddr() {
LOG_WARNING(Kernel, "(STUBBED) called");
return Memory::HEAP_VADDR;
}
VAddr VMManager::GetNewMapRegionBaseAddr() {
LOG_WARNING(Kernel, "(STUBBED) called");
return 0x8000000;
}
u64 VMManager::GetNewMapRegionSize() {
LOG_WARNING(Kernel, "(STUBBED) called");
return 0x8000000;
}
} // namespace Kernel