summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/pctl/pctl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/pctl/pctl.cpp')
-rw-r--r--src/core/hle/service/pctl/pctl.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/pctl/pctl.cpp b/src/core/hle/service/pctl/pctl.cpp
new file mode 100644
index 000000000..1b92f9f84
--- /dev/null
+++ b/src/core/hle/service/pctl/pctl.cpp
@@ -0,0 +1,16 @@
+// Copyright 2017 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/hle/service/pctl/pctl.h"
+#include "core/hle/service/pctl/pctl_a.h"
+
+namespace Service {
+namespace PCTL {
+
+void InstallInterfaces(SM::ServiceManager& service_manager) {
+ std::make_shared<PCTL_A>()->InstallAsService(service_manager);
+}
+
+} // namespace PCTL
+} // namespace Service