summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2016-02-01 21:37:10 -0500
committerGravatar Lioncash2016-02-01 21:49:44 -0500
commit5e5bb0c32e155131585baad82b7a1d52551488cb (patch)
tree2135e05d9d5da53869950fe20d1673948b071ed7 /src
parentMerge pull request #1377 from MerryMage/mmio (diff)
downloadyuzu-5e5bb0c32e155131585baad82b7a1d52551488cb.tar.gz
yuzu-5e5bb0c32e155131585baad82b7a1d52551488cb.tar.xz
yuzu-5e5bb0c32e155131585baad82b7a1d52551488cb.zip
services: Update function tables
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/cecd/cecd_u.cpp7
-rw-r--r--src/core/hle/service/ns_s.cpp9
2 files changed, 11 insertions, 5 deletions
diff --git a/src/core/hle/service/cecd/cecd_u.cpp b/src/core/hle/service/cecd/cecd_u.cpp
index 0a23bafbc..6a6dca8e5 100644
--- a/src/core/hle/service/cecd/cecd_u.cpp
+++ b/src/core/hle/service/cecd/cecd_u.cpp
@@ -9,11 +9,12 @@
9namespace Service { 9namespace Service {
10namespace CECD { 10namespace CECD {
11 11
12// Empty arrays are illegal -- commented out until an entry is added. 12static const Interface::FunctionInfo FunctionTable[] = {
13//const Interface::FunctionInfo FunctionTable[] = { }; 13 { 0x00120104, nullptr, "ReadSavedData" },
14};
14 15
15CECD_U_Interface::CECD_U_Interface() { 16CECD_U_Interface::CECD_U_Interface() {
16 //Register(FunctionTable); 17 Register(FunctionTable);
17} 18}
18 19
19} // namespace CECD 20} // namespace CECD
diff --git a/src/core/hle/service/ns_s.cpp b/src/core/hle/service/ns_s.cpp
index 99e8e0880..2760a4d5b 100644
--- a/src/core/hle/service/ns_s.cpp
+++ b/src/core/hle/service/ns_s.cpp
@@ -14,14 +14,19 @@ namespace NS_S {
14const Interface::FunctionInfo FunctionTable[] = { 14const Interface::FunctionInfo FunctionTable[] = {
15 {0x000100C0, nullptr, "LaunchFIRM"}, 15 {0x000100C0, nullptr, "LaunchFIRM"},
16 {0x000200C0, nullptr, "LaunchTitle"}, 16 {0x000200C0, nullptr, "LaunchTitle"},
17 {0x00030000, nullptr, "TerminateApplication"},
18 {0x00040040, nullptr, "TerminateProcess"},
17 {0x000500C0, nullptr, "LaunchApplicationFIRM"}, 19 {0x000500C0, nullptr, "LaunchApplicationFIRM"},
18 {0x00060042, nullptr, "SetFIRMParams4A0"}, 20 {0x00060042, nullptr, "SetFIRMParams4A0"},
19 {0x00070042, nullptr, "CardUpdateInitialize"}, 21 {0x00070042, nullptr, "CardUpdateInitialize"},
20 {0x000D0140, nullptr, "SetFIRMParams4B0"}, 22 {0x00080000, nullptr, "CardUpdateShutdown"},
23 {0x000D0140, nullptr, "SetTWLBannerHMAC"},
21 {0x000E0000, nullptr, "ShutdownAsync"}, 24 {0x000E0000, nullptr, "ShutdownAsync"},
22 {0x00100180, nullptr, "RebootSystem"}, 25 {0x00100180, nullptr, "RebootSystem"},
26 {0x00110100, nullptr, "TerminateTitle"},
27 {0x001200C0, nullptr, "SetApplicationCpuTimeLimit"},
23 {0x00150140, nullptr, "LaunchApplication"}, 28 {0x00150140, nullptr, "LaunchApplication"},
24 {0x00160000, nullptr, "HardRebootSystem"}, 29 {0x00160000, nullptr, "RebootSystemClean"},
25}; 30};
26 31
27//////////////////////////////////////////////////////////////////////////////////////////////////// 32////////////////////////////////////////////////////////////////////////////////////////////////////