summaryrefslogtreecommitdiffstats
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-12-31 21:22:49 +0100
committerbunnei <bunneidev@gmail.com>2017-12-31 21:22:49 +0100
commit3a91a62b8f80046f18b7629657e3679b1eb3deb4 (patch)
tree23c7bd6403b8b11b8707a8499dcdf06b1aa91ef1 /src/core/hle/svc.cpp
parentsvc: Minor cleanups. (diff)
downloadyuzu-3a91a62b8f80046f18b7629657e3679b1eb3deb4.tar
yuzu-3a91a62b8f80046f18b7629657e3679b1eb3deb4.tar.gz
yuzu-3a91a62b8f80046f18b7629657e3679b1eb3deb4.tar.bz2
yuzu-3a91a62b8f80046f18b7629657e3679b1eb3deb4.tar.lz
yuzu-3a91a62b8f80046f18b7629657e3679b1eb3deb4.tar.xz
yuzu-3a91a62b8f80046f18b7629657e3679b1eb3deb4.tar.zst
yuzu-3a91a62b8f80046f18b7629657e3679b1eb3deb4.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/svc.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 9f983ce0e..3b49686d7 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -41,6 +41,13 @@ static ResultCode MapMemory(VAddr dst_addr, VAddr src_addr, u64 size) {
return Kernel::g_current_process->MirrorMemory(dst_addr, src_addr, size);
}
+/// Unmaps a region that was previously mapped with svcMapMemory
+static ResultCode UnmapMemory(VAddr dst_addr, VAddr src_addr, u64 size) {
+ LOG_TRACE(Kernel_SVC, "called, dst_addr=0x%llx, src_addr=0x%llx, size=0x%llx", dst_addr,
+ src_addr, size);
+ return Kernel::g_current_process->UnmapMemory(dst_addr, src_addr, size);
+}
+
/// Connect to an OS service given the port name, returns the handle to the port to out
static ResultCode ConnectToPort(Kernel::Handle* out_handle, VAddr port_name_address) {
if (!Memory::IsValidVirtualAddress(port_name_address))
@@ -241,7 +248,7 @@ static const FunctionDef SVC_Table[] = {
{0x02, nullptr, "svcSetMemoryPermission"},
{0x03, nullptr, "svcSetMemoryAttribute"},
{0x04, HLE::Wrap<MapMemory>, "svcMapMemory"},
- {0x05, nullptr, "svcUnmapMemory"},
+ {0x05, HLE::Wrap<UnmapMemory>, "svcUnmapMemory"},
{0x06, HLE::Wrap<QueryMemory>, "svcQueryMemory"},
{0x07, nullptr, "svcExitProcess"},
{0x08, nullptr, "svcCreateThread"},