NV: Implemented the nvdrv:a service and the /dev/nvmap device.

This commit is contained in:
Subv
2018-01-07 21:25:57 -05:00
committed by bunnei
parent ab86b80cac
commit 94a5e97eb3
4 changed files with 354 additions and 0 deletions

View File

@ -0,0 +1,16 @@
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/hle/service/nvdrv/nvdrv.h"
#include "core/hle/service/nvdrv/nvdrv_a.h"
namespace Service {
namespace NVDRV {
void InstallInterfaces(SM::ServiceManager& service_manager) {
std::make_shared<NVDRV_A>()->InstallAsService(service_manager);
}
} // namespace nvdrv
} // namespace Service