summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/set/set_cal.cpp
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-03-02 09:49:35 +0100
committermailwl <mailwl@gmail.com>2018-03-03 07:03:49 +0100
commit28669872d93ae726c3f97f6e9ac8da984e313646 (patch)
tree46b17dc2c96a5b031dfd841ad8d7bf27057c42c8 /src/core/hle/service/set/set_cal.cpp
parentMerge pull request #216 from Subv/savedata (diff)
downloadyuzu-28669872d93ae726c3f97f6e9ac8da984e313646.tar
yuzu-28669872d93ae726c3f97f6e9ac8da984e313646.tar.gz
yuzu-28669872d93ae726c3f97f6e9ac8da984e313646.tar.bz2
yuzu-28669872d93ae726c3f97f6e9ac8da984e313646.tar.lz
yuzu-28669872d93ae726c3f97f6e9ac8da984e313646.tar.xz
yuzu-28669872d93ae726c3f97f6e9ac8da984e313646.tar.zst
yuzu-28669872d93ae726c3f97f6e9ac8da984e313646.zip
Diffstat (limited to 'src/core/hle/service/set/set_cal.cpp')
-rw-r--r--src/core/hle/service/set/set_cal.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/core/hle/service/set/set_cal.cpp b/src/core/hle/service/set/set_cal.cpp
new file mode 100644
index 000000000..6231acd96
--- /dev/null
+++ b/src/core/hle/service/set/set_cal.cpp
@@ -0,0 +1,40 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/hle/service/set/set_cal.h"
+
+namespace Service {
+namespace Set {
+
+SET_CAL::SET_CAL() : ServiceFramework("set:cal") {
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "GetBluetoothBdAddress"},
+ {1, nullptr, "GetConfigurationId1"},
+ {2, nullptr, "GetAccelerometerOffset"},
+ {3, nullptr, "GetAccelerometerScale"},
+ {4, nullptr, "GetGyroscopeOffset"},
+ {5, nullptr, "GetGyroscopeScale"},
+ {6, nullptr, "GetWirelessLanMacAddress"},
+ {7, nullptr, "GetWirelessLanCountryCodeCount"},
+ {8, nullptr, "GetWirelessLanCountryCodes"},
+ {9, nullptr, "GetSerialNumber"},
+ {10, nullptr, "SetInitialSystemAppletProgramId"},
+ {11, nullptr, "SetOverlayDispProgramId"},
+ {12, nullptr, "GetBatteryLot"},
+ {14, nullptr, "GetEciDeviceCertificate"},
+ {15, nullptr, "GetEticketDeviceCertificate"},
+ {16, nullptr, "GetSslKey"},
+ {17, nullptr, "GetSslCertificate"},
+ {18, nullptr, "GetGameCardKey"},
+ {19, nullptr, "GetGameCardCertificate"},
+ {20, nullptr, "GetEciDeviceKey"},
+ {21, nullptr, "GetEticketDeviceKey"},
+ {22, nullptr, "GetSpeakerParameter"},
+ {23, nullptr, "GetLcdVendorId"},
+ };
+ RegisterHandlers(functions);
+}
+
+} // namespace Set
+} // namespace Service