summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-27 17:32:45 -0400
committerGravatar Lioncash2018-07-27 17:38:30 -0400
commit7931cc0ceb744ff03cce0affeb5535d1766e95d2 (patch)
tree74cf5161dab18a86eedc105542ecb55f8192ed4a /src/core/hle/service/service.cpp
parentMerge pull request #845 from lioncash/nfc (diff)
downloadyuzu-7931cc0ceb744ff03cce0affeb5535d1766e95d2.tar.gz
yuzu-7931cc0ceb744ff03cce0affeb5535d1766e95d2.tar.xz
yuzu-7931cc0ceb744ff03cce0affeb5535d1766e95d2.zip
service: Add ncm services
Adds the basic skeleton for the ncm services based off information 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 8026d27a7..de3723980 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -35,6 +35,7 @@
35#include "core/hle/service/ldr/ldr.h" 35#include "core/hle/service/ldr/ldr.h"
36#include "core/hle/service/lm/lm.h" 36#include "core/hle/service/lm/lm.h"
37#include "core/hle/service/mm/mm_u.h" 37#include "core/hle/service/mm/mm_u.h"
38#include "core/hle/service/ncm/ncm.h"
38#include "core/hle/service/nfc/nfc.h" 39#include "core/hle/service/nfc/nfc.h"
39#include "core/hle/service/nfp/nfp.h" 40#include "core/hle/service/nfp/nfp.h"
40#include "core/hle/service/nifm/nifm.h" 41#include "core/hle/service/nifm/nifm.h"
@@ -212,6 +213,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
212 LDR::InstallInterfaces(*sm); 213 LDR::InstallInterfaces(*sm);
213 LM::InstallInterfaces(*sm); 214 LM::InstallInterfaces(*sm);
214 MM::InstallInterfaces(*sm); 215 MM::InstallInterfaces(*sm);
216 NCM::InstallInterfaces(*sm);
215 NFC::InstallInterfaces(*sm); 217 NFC::InstallInterfaces(*sm);
216 NFP::InstallInterfaces(*sm); 218 NFP::InstallInterfaces(*sm);
217 NIFM::InstallInterfaces(*sm); 219 NIFM::InstallInterfaces(*sm);