summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-25 22:57:08 -0400
committerGravatar Lioncash2018-07-25 23:11:03 -0400
commit3fb124961eb99a2dfaacdc32541464387901edc1 (patch)
treec659f2ecbfc0ff2390b5eceecd5acf703bdb31bc /src/core/hle/service/service.cpp
parentMerge pull request #824 from lioncash/nvdrv (diff)
downloadyuzu-3fb124961eb99a2dfaacdc32541464387901edc1.tar.gz
yuzu-3fb124961eb99a2dfaacdc32541464387901edc1.tar.xz
yuzu-3fb124961eb99a2dfaacdc32541464387901edc1.zip
service: Add ldr services
Adds the skeleton for the ldr-related services based off the information provided on Switch Brew.
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 4daf13fa3..2ac416b98 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -26,6 +26,7 @@
26#include "core/hle/service/filesystem/filesystem.h" 26#include "core/hle/service/filesystem/filesystem.h"
27#include "core/hle/service/friend/friend.h" 27#include "core/hle/service/friend/friend.h"
28#include "core/hle/service/hid/hid.h" 28#include "core/hle/service/hid/hid.h"
29#include "core/hle/service/ldr/ldr.h"
29#include "core/hle/service/lm/lm.h" 30#include "core/hle/service/lm/lm.h"
30#include "core/hle/service/mm/mm_u.h" 31#include "core/hle/service/mm/mm_u.h"
31#include "core/hle/service/nfp/nfp.h" 32#include "core/hle/service/nfp/nfp.h"
@@ -194,6 +195,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
194 FileSystem::InstallInterfaces(*sm); 195 FileSystem::InstallInterfaces(*sm);
195 Friend::InstallInterfaces(*sm); 196 Friend::InstallInterfaces(*sm);
196 HID::InstallInterfaces(*sm); 197 HID::InstallInterfaces(*sm);
198 LDR::InstallInterfaces(*sm);
197 LM::InstallInterfaces(*sm); 199 LM::InstallInterfaces(*sm);
198 MM::InstallInterfaces(*sm); 200 MM::InstallInterfaces(*sm);
199 NFP::InstallInterfaces(*sm); 201 NFP::InstallInterfaces(*sm);