summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm_sets.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2016-12-09 04:34:32 +0100
committerGitHub <noreply@github.com>2016-12-09 04:34:32 +0100
commit18bf4acb9bc5b1ee79f757ea604efd8f10eac7cf (patch)
treee230f60ef4ae620bce849da9f72ee7e397c0de1a /src/core/hle/service/ptm/ptm_sets.cpp
parentMerge pull request #2280 from Subv/citrace_size (diff)
parentservice: Add the ptm:s service (diff)
downloadyuzu-18bf4acb9bc5b1ee79f757ea604efd8f10eac7cf.tar
yuzu-18bf4acb9bc5b1ee79f757ea604efd8f10eac7cf.tar.gz
yuzu-18bf4acb9bc5b1ee79f757ea604efd8f10eac7cf.tar.bz2
yuzu-18bf4acb9bc5b1ee79f757ea604efd8f10eac7cf.tar.lz
yuzu-18bf4acb9bc5b1ee79f757ea604efd8f10eac7cf.tar.xz
yuzu-18bf4acb9bc5b1ee79f757ea604efd8f10eac7cf.tar.zst
yuzu-18bf4acb9bc5b1ee79f757ea604efd8f10eac7cf.zip
Diffstat (limited to 'src/core/hle/service/ptm/ptm_sets.cpp')
-rw-r--r--src/core/hle/service/ptm/ptm_sets.cpp20
1 files changed, 20 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..a8c6cf227
--- /dev/null
+++ b/src/core/hle/service/ptm/ptm_sets.cpp
@@ -0,0 +1,20 @@
+// 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[] = {
+ // Note that this service does not have access to ptm:u's common commands
+ {0x00010080, nullptr, "SetSystemTime"},
+};
+
+PTM_Sets::PTM_Sets() {
+ Register(FunctionTable);
+}
+
+} // namespace PTM
+} // namespace Service