diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-15 08:36:52 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-16 07:46:45 +0200 |
commit | ded36b86887a3f8d727af6d3d30d069da871b475 (patch) | |
tree | 138991fa104136f10b3f2af71ffe28e332c6207d /src/core/hle/service/spl/module.cpp | |
parent | spl: Add SPL types (diff) | |
download | yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar.gz yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar.bz2 yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar.lz yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar.xz yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar.zst yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.zip |
Diffstat (limited to 'src/core/hle/service/spl/module.cpp')
-rw-r--r-- | src/core/hle/service/spl/module.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/core/hle/service/spl/module.cpp b/src/core/hle/service/spl/module.cpp index 0b5e2b7c3..eabf2e319 100644 --- a/src/core/hle/service/spl/module.cpp +++ b/src/core/hle/service/spl/module.cpp @@ -24,7 +24,13 @@ Module::Interface::Interface(Core::System& system_, std::shared_ptr<Module> modu Module::Interface::~Interface() = default; -void Module::Interface::GetRandomBytes(Kernel::HLERequestContext& ctx) { +void Module::Interface::GetConfig(Kernel::HLERequestContext& ctx) {} + +void Module::Interface::ModularExponentiate(Kernel::HLERequestContext& ctx) {} + +void Module::Interface::SetConfig(Kernel::HLERequestContext& ctx) {} + +void Module::Interface::GenerateRandomBytes(Kernel::HLERequestContext& ctx) { LOG_DEBUG(Service_SPL, "called"); const std::size_t size = ctx.GetWriteBufferSize(); @@ -39,6 +45,12 @@ void Module::Interface::GetRandomBytes(Kernel::HLERequestContext& ctx) { rb.Push(ResultSuccess); } +void Module::Interface::IsDevelopment(Kernel::HLERequestContext& ctx) {} + +void Module::Interface::SetBootReason(Kernel::HLERequestContext& ctx) {} + +void Module::Interface::GetBootReason(Kernel::HLERequestContext& ctx) {} + void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system) { auto module = std::make_shared<Module>(); std::make_shared<CSRNG>(system, module)->InstallAsService(service_manager); |