summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-27 14:29:27 -0700
committerGravatar GitHub2018-07-27 14:29:27 -0700
commit0191a1e526f62a16a14ce92c354429807cca01a5 (patch)
treec20ea340d6654dfa1749c94c59afd902965f20d6 /src/core/hle/service/service.cpp
parentMerge pull request #839 from FearlessTobi/actually-port-3594 (diff)
parentservice/nfc: Implement Create[x]Interface functions (diff)
downloadyuzu-0191a1e526f62a16a14ce92c354429807cca01a5.tar.gz
yuzu-0191a1e526f62a16a14ce92c354429807cca01a5.tar.xz
yuzu-0191a1e526f62a16a14ce92c354429807cca01a5.zip
Merge pull request #845 from lioncash/nfc
service: Add nfc services
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 d2c05cc92..8026d27a7 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/nfc/nfc.h"
38#include "core/hle/service/nfp/nfp.h" 39#include "core/hle/service/nfp/nfp.h"
39#include "core/hle/service/nifm/nifm.h" 40#include "core/hle/service/nifm/nifm.h"
40#include "core/hle/service/nim/nim.h" 41#include "core/hle/service/nim/nim.h"
@@ -211,6 +212,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
211 LDR::InstallInterfaces(*sm); 212 LDR::InstallInterfaces(*sm);
212 LM::InstallInterfaces(*sm); 213 LM::InstallInterfaces(*sm);
213 MM::InstallInterfaces(*sm); 214 MM::InstallInterfaces(*sm);
215 NFC::InstallInterfaces(*sm);
214 NFP::InstallInterfaces(*sm); 216 NFP::InstallInterfaces(*sm);
215 NIFM::InstallInterfaces(*sm); 217 NIFM::InstallInterfaces(*sm);
216 NIM::InstallInterfaces(*sm); 218 NIM::InstallInterfaces(*sm);