summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm_sets.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-08 11:17:19 +0100
committerLioncash <mathew1800@gmail.com>2016-12-08 11:43:08 +0100
commit41c03f481a6d95dab830d6ecf6e563ff7284dc9a (patch)
treeb9d7d0b687b552053de7a671f9b101944e5628ac /src/core/hle/service/ptm/ptm_sets.cpp
parentMerge pull request #2286 from lioncash/svc (diff)
downloadyuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar.gz
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar.bz2
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar.lz
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar.xz
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar.zst
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.zip
Diffstat (limited to 'src/core/hle/service/ptm/ptm_sets.cpp')
-rw-r--r--src/core/hle/service/ptm/ptm_sets.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/core/hle/service/ptm/ptm_sets.cpp b/src/core/hle/service/ptm/ptm_sets.cpp
new file mode 100644
index 000000000..85823f001
--- /dev/null
+++ b/src/core/hle/service/ptm/ptm_sets.cpp
@@ -0,0 +1,19 @@
+// Copyright 2016 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/hle/service/ptm/ptm_sets.h"
+
+namespace Service {
+namespace PTM {
+
+const Interface::FunctionInfo FunctionTable[] = {
+ {0x00010080, nullptr, "SetSystemTime"},
+};
+
+PTM_Sets::PTM_Sets() {
+ Register(FunctionTable);
+}
+
+} // namespace PTM
+} // namespace Service