mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 09:45:46 +00:00
NV: Implemented the nvdrv:a service and the /dev/nvmap device.
This commit is contained in:
parent
ab86b80cac
commit
94a5e97eb3
4 changed files with 354 additions and 0 deletions
16
src/core/hle/service/nvdrv/nvdrv.cpp
Normal file
16
src/core/hle/service/nvdrv/nvdrv.cpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue