mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 06:47:56 -05:00
service: Add the nim services
Adds the skeleton for the nim services based off information from Switch Brew.
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user