diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-25 16:47:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-25 16:47:12 +0200 |
commit | b67c1fdf38655638d746b4cb252f16bd298da017 (patch) | |
tree | f5c8100f9140c57806b7774b36c3e729a9356e3c | |
parent | Implemented fatal:u properly (#1347) (diff) | |
parent | svc: Updated svc names (diff) | |
download | yuzu-b67c1fdf38655638d746b4cb252f16bd298da017.tar yuzu-b67c1fdf38655638d746b4cb252f16bd298da017.tar.gz yuzu-b67c1fdf38655638d746b4cb252f16bd298da017.tar.bz2 yuzu-b67c1fdf38655638d746b4cb252f16bd298da017.tar.lz yuzu-b67c1fdf38655638d746b4cb252f16bd298da017.tar.xz yuzu-b67c1fdf38655638d746b4cb252f16bd298da017.tar.zst yuzu-b67c1fdf38655638d746b4cb252f16bd298da017.zip |
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 0bc407098..c9d212a4c 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -1017,7 +1017,7 @@ static const FunctionDef SVC_Table[] = { {0x2B, nullptr, "FlushDataCache"}, {0x2C, nullptr, "MapPhysicalMemory"}, {0x2D, nullptr, "UnmapPhysicalMemory"}, - {0x2E, nullptr, "GetNextThreadInfo"}, + {0x2E, nullptr, "GetFutureThreadInfo"}, {0x2F, nullptr, "GetLastThreadInfo"}, {0x30, nullptr, "GetResourceLimitLimitValue"}, {0x31, nullptr, "GetResourceLimitCurrentValue"}, @@ -1043,11 +1043,11 @@ static const FunctionDef SVC_Table[] = { {0x45, nullptr, "CreateEvent"}, {0x46, nullptr, "Unknown"}, {0x47, nullptr, "Unknown"}, - {0x48, nullptr, "AllocateUnsafeMemory"}, - {0x49, nullptr, "FreeUnsafeMemory"}, - {0x4A, nullptr, "SetUnsafeAllocationLimit"}, - {0x4B, nullptr, "CreateJitMemory"}, - {0x4C, nullptr, "MapJitMemory"}, + {0x48, nullptr, "MapPhysicalMemoryUnsafe"}, + {0x49, nullptr, "UnmapPhysicalMemoryUnsafe"}, + {0x4A, nullptr, "SetUnsafeLimit"}, + {0x4B, nullptr, "CreateCodeMemory"}, + {0x4C, nullptr, "ControlCodeMemory"}, {0x4D, nullptr, "SleepSystem"}, {0x4E, nullptr, "ReadWriteRegister"}, {0x4F, nullptr, "SetProcessActivity"}, @@ -1082,7 +1082,7 @@ static const FunctionDef SVC_Table[] = { {0x6C, nullptr, "SetHardwareBreakPoint"}, {0x6D, nullptr, "GetDebugThreadParam"}, {0x6E, nullptr, "Unknown"}, - {0x6F, nullptr, "GetMemoryInfo"}, + {0x6F, nullptr, "GetSystemInfo"}, {0x70, nullptr, "CreatePort"}, {0x71, nullptr, "ManageNamedPort"}, {0x72, nullptr, "ConnectToPort"}, |