kern: implement SvcMapPhysicalMemory

This commit is contained in:
Michael Scire
2020-07-24 08:07:34 -07:00
committed by SciresM
parent 695b82b945
commit 5ecc80a5f6
11 changed files with 559 additions and 13 deletions

View File

@@ -224,6 +224,10 @@ namespace ams::kern {
return this->ipc_lock_count;
}
constexpr KMemoryState GetState() const {
return this->state;
}
constexpr KMemoryPermission GetPermission() const {
return this->perm;
}