summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar bunnei2015-01-28 17:36:23 -0500
committerGravatar bunnei2015-01-28 17:36:23 -0500
commit206cabc0e4c3f49c548d38ed05cdabf11fcd8bb4 (patch)
treef82f75e35c0f9c184980deb9109ba82c03a8e53c /src/core
parentMerge pull request #510 from bunnei/pica_color_enable (diff)
parentSVC: Update the SVC function table (diff)
downloadyuzu-206cabc0e4c3f49c548d38ed05cdabf11fcd8bb4.tar.gz
yuzu-206cabc0e4c3f49c548d38ed05cdabf11fcd8bb4.tar.xz
yuzu-206cabc0e4c3f49c548d38ed05cdabf11fcd8bb4.zip
Merge pull request #412 from purpasmart96/svc_table_cleanup
SVC: Update the SVC function table
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/svc.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 2d922046e..3d743f125 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -589,15 +589,15 @@ const HLE::FunctionDef SVC_Table[] = {
589 {0x70, nullptr, "ControlProcessMemory"}, 589 {0x70, nullptr, "ControlProcessMemory"},
590 {0x71, nullptr, "MapProcessMemory"}, 590 {0x71, nullptr, "MapProcessMemory"},
591 {0x72, nullptr, "UnmapProcessMemory"}, 591 {0x72, nullptr, "UnmapProcessMemory"},
592 {0x73, nullptr, "Unknown"}, 592 {0x73, nullptr, "CreateCodeSet"},
593 {0x74, nullptr, "Unknown"}, 593 {0x74, nullptr, "RandomStub"},
594 {0x75, nullptr, "Unknown"}, 594 {0x75, nullptr, "CreateProcess"},
595 {0x76, nullptr, "TerminateProcess"}, 595 {0x76, nullptr, "TerminateProcess"},
596 {0x77, nullptr, "Unknown"}, 596 {0x77, nullptr, "SetProcessResourceLimits"},
597 {0x78, nullptr, "CreateResourceLimit"}, 597 {0x78, nullptr, "CreateResourceLimit"},
598 {0x79, nullptr, "Unknown"}, 598 {0x79, nullptr, "SetResourceLimitValues"},
599 {0x7A, nullptr, "Unknown"}, 599 {0x7A, nullptr, "AddCodeSegment"},
600 {0x7B, nullptr, "Unknown"}, 600 {0x7B, nullptr, "Backdoor"},
601 {0x7C, nullptr, "KernelSetState"}, 601 {0x7C, nullptr, "KernelSetState"},
602 {0x7D, nullptr, "QueryProcessMemory"}, 602 {0x7D, nullptr, "QueryProcessMemory"},
603}; 603};