diff options
| author | mailwl <mailwl@gmail.com> | 2018-03-22 09:54:16 +0300 |
|---|---|---|
| committer | mailwl <mailwl@gmail.com> | 2018-03-22 09:55:14 +0300 |
| commit | 95e747cd06810b0e95ee6cd379772a4e36ab9794 (patch) | |
| tree | c1c76fedd5bc3b5815b2eac9b7f83b6bbc5b37bb /src/core/hle/service/spl/csrng.cpp | |
| parent | ec5ede68e7f165c5dbb6be8669e226f783241c60 (diff) | |
Service/spl: add module and services
Diffstat (limited to 'src/core/hle/service/spl/csrng.cpp')
| -rw-r--r-- | src/core/hle/service/spl/csrng.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/core/hle/service/spl/csrng.cpp b/src/core/hle/service/spl/csrng.cpp new file mode 100644 index 000000000..cde05717a --- /dev/null +++ b/src/core/hle/service/spl/csrng.cpp @@ -0,0 +1,18 @@ +// Copyright 2018 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#include "core/hle/service/spl/csrng.h" + +namespace Service { +namespace SPL { + +CSRNG::CSRNG(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "csrng") { + static const FunctionInfo functions[] = { + {0, &CSRNG::GetRandomBytes, "GetRandomBytes"}, + }; + RegisterHandlers(functions); +} + +} // namespace SPL +} // namespace Service |
