summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-26 02:17:15 -0400
committerGravatar Lioncash2018-07-26 02:47:06 -0400
commitf916611e321fa07d790e5ddb34fee222ddf7d4f0 (patch)
treef382defc458740d574311218c936839071bdebf3 /src/core/hle/service/service.cpp
parentMerge pull request #828 from lioncash/ldr (diff)
downloadyuzu-f916611e321fa07d790e5ddb34fee222ddf7d4f0.tar.gz
yuzu-f916611e321fa07d790e5ddb34fee222ddf7d4f0.tar.xz
yuzu-f916611e321fa07d790e5ddb34fee222ddf7d4f0.zip
service: Add the nim services
Adds the skeleton for the nim services based off information from 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 482989ea7..f35828967 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -33,6 +33,7 @@
33#include "core/hle/service/mm/mm_u.h" 33#include "core/hle/service/mm/mm_u.h"
34#include "core/hle/service/nfp/nfp.h" 34#include "core/hle/service/nfp/nfp.h"
35#include "core/hle/service/nifm/nifm.h" 35#include "core/hle/service/nifm/nifm.h"
36#include "core/hle/service/nim/nim.h"
36#include "core/hle/service/ns/ns.h" 37#include "core/hle/service/ns/ns.h"
37#include "core/hle/service/nvdrv/nvdrv.h" 38#include "core/hle/service/nvdrv/nvdrv.h"
38#include "core/hle/service/pctl/pctl.h" 39#include "core/hle/service/pctl/pctl.h"
@@ -204,6 +205,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
204 MM::InstallInterfaces(*sm); 205 MM::InstallInterfaces(*sm);
205 NFP::InstallInterfaces(*sm); 206 NFP::InstallInterfaces(*sm);
206 NIFM::InstallInterfaces(*sm); 207 NIFM::InstallInterfaces(*sm);
208 NIM::InstallInterfaces(*sm);
207 NS::InstallInterfaces(*sm); 209 NS::InstallInterfaces(*sm);
208 Nvidia::InstallInterfaces(*sm); 210 Nvidia::InstallInterfaces(*sm);
209 PCTL::InstallInterfaces(*sm); 211 PCTL::InstallInterfaces(*sm);