diff options
| author | 2018-09-25 10:47:12 -0400 | |
|---|---|---|
| committer | 2018-09-25 10:47:12 -0400 | |
| commit | b67c1fdf38655638d746b4cb252f16bd298da017 (patch) | |
| tree | f5c8100f9140c57806b7774b36c3e729a9356e3c /src | |
| parent | Implemented fatal:u properly (#1347) (diff) | |
| parent | svc: Updated svc names (diff) | |
| download | yuzu-b67c1fdf38655638d746b4cb252f16bd298da017.tar.gz yuzu-b67c1fdf38655638d746b4cb252f16bd298da017.tar.xz yuzu-b67c1fdf38655638d746b4cb252f16bd298da017.zip | |
Merge pull request #1393 from tech4me/svc
svc: Updated svc names
Diffstat (limited to '')
| -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[] = { | |||
| 1017 | {0x2B, nullptr, "FlushDataCache"}, | 1017 | {0x2B, nullptr, "FlushDataCache"}, |
| 1018 | {0x2C, nullptr, "MapPhysicalMemory"}, | 1018 | {0x2C, nullptr, "MapPhysicalMemory"}, |
| 1019 | {0x2D, nullptr, "UnmapPhysicalMemory"}, | 1019 | {0x2D, nullptr, "UnmapPhysicalMemory"}, |
| 1020 | {0x2E, nullptr, "GetNextThreadInfo"}, | 1020 | {0x2E, nullptr, "GetFutureThreadInfo"}, |
| 1021 | {0x2F, nullptr, "GetLastThreadInfo"}, | 1021 | {0x2F, nullptr, "GetLastThreadInfo"}, |
| 1022 | {0x30, nullptr, "GetResourceLimitLimitValue"}, | 1022 | {0x30, nullptr, "GetResourceLimitLimitValue"}, |
| 1023 | {0x31, nullptr, "GetResourceLimitCurrentValue"}, | 1023 | {0x31, nullptr, "GetResourceLimitCurrentValue"}, |
| @@ -1043,11 +1043,11 @@ static const FunctionDef SVC_Table[] = { | |||
| 1043 | {0x45, nullptr, "CreateEvent"}, | 1043 | {0x45, nullptr, "CreateEvent"}, |
| 1044 | {0x46, nullptr, "Unknown"}, | 1044 | {0x46, nullptr, "Unknown"}, |
| 1045 | {0x47, nullptr, "Unknown"}, | 1045 | {0x47, nullptr, "Unknown"}, |
| 1046 | {0x48, nullptr, "AllocateUnsafeMemory"}, | 1046 | {0x48, nullptr, "MapPhysicalMemoryUnsafe"}, |
| 1047 | {0x49, nullptr, "FreeUnsafeMemory"}, | 1047 | {0x49, nullptr, "UnmapPhysicalMemoryUnsafe"}, |
| 1048 | {0x4A, nullptr, "SetUnsafeAllocationLimit"}, | 1048 | {0x4A, nullptr, "SetUnsafeLimit"}, |
| 1049 | {0x4B, nullptr, "CreateJitMemory"}, | 1049 | {0x4B, nullptr, "CreateCodeMemory"}, |
| 1050 | {0x4C, nullptr, "MapJitMemory"}, | 1050 | {0x4C, nullptr, "ControlCodeMemory"}, |
| 1051 | {0x4D, nullptr, "SleepSystem"}, | 1051 | {0x4D, nullptr, "SleepSystem"}, |
| 1052 | {0x4E, nullptr, "ReadWriteRegister"}, | 1052 | {0x4E, nullptr, "ReadWriteRegister"}, |
| 1053 | {0x4F, nullptr, "SetProcessActivity"}, | 1053 | {0x4F, nullptr, "SetProcessActivity"}, |
| @@ -1082,7 +1082,7 @@ static const FunctionDef SVC_Table[] = { | |||
| 1082 | {0x6C, nullptr, "SetHardwareBreakPoint"}, | 1082 | {0x6C, nullptr, "SetHardwareBreakPoint"}, |
| 1083 | {0x6D, nullptr, "GetDebugThreadParam"}, | 1083 | {0x6D, nullptr, "GetDebugThreadParam"}, |
| 1084 | {0x6E, nullptr, "Unknown"}, | 1084 | {0x6E, nullptr, "Unknown"}, |
| 1085 | {0x6F, nullptr, "GetMemoryInfo"}, | 1085 | {0x6F, nullptr, "GetSystemInfo"}, |
| 1086 | {0x70, nullptr, "CreatePort"}, | 1086 | {0x70, nullptr, "CreatePort"}, |
| 1087 | {0x71, nullptr, "ManageNamedPort"}, | 1087 | {0x71, nullptr, "ManageNamedPort"}, |
| 1088 | {0x72, nullptr, "ConnectToPort"}, | 1088 | {0x72, nullptr, "ConnectToPort"}, |