diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-27 17:32:45 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-27 17:38:30 -0400 |
commit | 7931cc0ceb744ff03cce0affeb5535d1766e95d2 (patch) | |
tree | 74cf5161dab18a86eedc105542ecb55f8192ed4a /src/core/hle/service/service.cpp | |
parent | 0191a1e526f62a16a14ce92c354429807cca01a5 (diff) |
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.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 8026d27a7c..de37239802 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -35,6 +35,7 @@ #include "core/hle/service/ldr/ldr.h" #include "core/hle/service/lm/lm.h" #include "core/hle/service/mm/mm_u.h" +#include "core/hle/service/ncm/ncm.h" #include "core/hle/service/nfc/nfc.h" #include "core/hle/service/nfp/nfp.h" #include "core/hle/service/nifm/nifm.h" @@ -212,6 +213,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { LDR::InstallInterfaces(*sm); LM::InstallInterfaces(*sm); MM::InstallInterfaces(*sm); + NCM::InstallInterfaces(*sm); NFC::InstallInterfaces(*sm); NFP::InstallInterfaces(*sm); NIFM::InstallInterfaces(*sm); |