summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-27 14:32:39 -0400
committerGravatar Lioncash2018-07-27 14:50:24 -0400
commit04d144aa40009811268a6fe485ef74fc23f2fb0c (patch)
tree026021f7a043f6f622ec841f49aa8022d786084e /src/core/hle/service/service.cpp
parentMerge pull request #837 from lioncash/priv (diff)
downloadyuzu-04d144aa40009811268a6fe485ef74fc23f2fb0c.tar.gz
yuzu-04d144aa40009811268a6fe485ef74fc23f2fb0c.tar.xz
yuzu-04d144aa40009811268a6fe485ef74fc23f2fb0c.zip
service: Add nfc services
Adds the skeleton of the nfc service 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 8b84fd349..443ab5857 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -33,6 +33,7 @@
33#include "core/hle/service/ldr/ldr.h" 33#include "core/hle/service/ldr/ldr.h"
34#include "core/hle/service/lm/lm.h" 34#include "core/hle/service/lm/lm.h"
35#include "core/hle/service/mm/mm_u.h" 35#include "core/hle/service/mm/mm_u.h"
36#include "core/hle/service/nfc/nfc.h"
36#include "core/hle/service/nfp/nfp.h" 37#include "core/hle/service/nfp/nfp.h"
37#include "core/hle/service/nifm/nifm.h" 38#include "core/hle/service/nifm/nifm.h"
38#include "core/hle/service/nim/nim.h" 39#include "core/hle/service/nim/nim.h"
@@ -207,6 +208,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
207 LDR::InstallInterfaces(*sm); 208 LDR::InstallInterfaces(*sm);
208 LM::InstallInterfaces(*sm); 209 LM::InstallInterfaces(*sm);
209 MM::InstallInterfaces(*sm); 210 MM::InstallInterfaces(*sm);
211 NFC::InstallInterfaces(*sm);
210 NFP::InstallInterfaces(*sm); 212 NFP::InstallInterfaces(*sm);
211 NIFM::InstallInterfaces(*sm); 213 NIFM::InstallInterfaces(*sm);
212 NIM::InstallInterfaces(*sm); 214 NIM::InstallInterfaces(*sm);