summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/psc/psc.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-22 04:25:31 +0100
committerLiam <byteslice@airmail.cc>2024-02-22 04:54:05 +0100
commite85466c1ae5c993617920f28e9ee1799591d4a9a (patch)
tree06e0610553d633da38488813ee3bf33987cf4bf3 /src/core/hle/service/psc/psc.cpp
parentpsc: rewrite IPmService (diff)
downloadyuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar.gz
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar.bz2
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar.lz
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar.xz
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar.zst
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/psc/psc.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/psc/psc.cpp b/src/core/hle/service/psc/psc.cpp
index a086c13ed..e1762d694 100644
--- a/src/core/hle/service/psc/psc.cpp
+++ b/src/core/hle/service/psc/psc.cpp
@@ -1,6 +1,8 @@
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
+#include "core/hle/service/psc/ovln/receiver_service.h"
+#include "core/hle/service/psc/ovln/sender_service.h"
#include "core/hle/service/psc/pm_control.h"
#include "core/hle/service/psc/pm_service.h"
#include "core/hle/service/psc/psc.h"
@@ -17,6 +19,8 @@ void LoopProcess(Core::System& system) {
server_manager->RegisterNamedService("psc:c", std::make_shared<IPmControl>(system));
server_manager->RegisterNamedService("psc:m", std::make_shared<IPmService>(system));
+ server_manager->RegisterNamedService("ovln:rcv", std::make_shared<IReceiverService>(system));
+ server_manager->RegisterNamedService("ovln:snd", std::make_shared<ISenderService>(system));
auto time = std::make_shared<Time::TimeManager>(system);