service: Add the nim services

Adds the skeleton for the nim services based off information from Switch
Brew.
This commit is contained in:
Lioncash 2018-07-26 02:17:15 -04:00
parent 1958d07d7d
commit f916611e32
4 changed files with 143 additions and 0 deletions

View file

@ -33,6 +33,7 @@
#include "core/hle/service/mm/mm_u.h"
#include "core/hle/service/nfp/nfp.h"
#include "core/hle/service/nifm/nifm.h"
#include "core/hle/service/nim/nim.h"
#include "core/hle/service/ns/ns.h"
#include "core/hle/service/nvdrv/nvdrv.h"
#include "core/hle/service/pctl/pctl.h"
@ -204,6 +205,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
MM::InstallInterfaces(*sm);
NFP::InstallInterfaces(*sm);
NIFM::InstallInterfaces(*sm);
NIM::InstallInterfaces(*sm);
NS::InstallInterfaces(*sm);
Nvidia::InstallInterfaces(*sm);
PCTL::InstallInterfaces(*sm);