summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/nvdrv.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-08 03:25:57 +0100
committerbunnei <bunneidev@gmail.com>2018-01-11 05:28:05 +0100
commit94a5e97eb3e331f5c02e3ff2c0d4a9d62f072ba7 (patch)
tree3067e1a6e631253b880851e739a47926d75fe15a /src/core/hle/service/nvdrv/nvdrv.cpp
parentIPC: Corrected some definitions for the buffer C descriptor flags. (diff)
downloadyuzu-94a5e97eb3e331f5c02e3ff2c0d4a9d62f072ba7.tar
yuzu-94a5e97eb3e331f5c02e3ff2c0d4a9d62f072ba7.tar.gz
yuzu-94a5e97eb3e331f5c02e3ff2c0d4a9d62f072ba7.tar.bz2
yuzu-94a5e97eb3e331f5c02e3ff2c0d4a9d62f072ba7.tar.lz
yuzu-94a5e97eb3e331f5c02e3ff2c0d4a9d62f072ba7.tar.xz
yuzu-94a5e97eb3e331f5c02e3ff2c0d4a9d62f072ba7.tar.zst
yuzu-94a5e97eb3e331f5c02e3ff2c0d4a9d62f072ba7.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/nvdrv.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv.cpp b/src/core/hle/service/nvdrv/nvdrv.cpp
new file mode 100644
index 000000000..a2d55eaee
--- /dev/null
+++ b/src/core/hle/service/nvdrv/nvdrv.cpp
@@ -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