From 67b8265bd669618294aad379189f79400f6ea461 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 7 Dec 2019 21:12:14 -0500 Subject: kernel/svc: Provide implementations for svcDumpInfo/svcDumpInfoNew These are fairly trivial to implement, we can just do nothing. This also provides a spot for us to potentially dump out any relevant info in the future (e.g. for debugging purposes with homebrew, etc). While we're at it, we can also correct the names of both of these supervisor calls. --- src/core/hle/kernel/svc_wrap.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/core/hle/kernel/svc_wrap.h') diff --git a/src/core/hle/kernel/svc_wrap.h b/src/core/hle/kernel/svc_wrap.h index c2d8d0dc3..9452e3b6f 100644 --- a/src/core/hle/kernel/svc_wrap.h +++ b/src/core/hle/kernel/svc_wrap.h @@ -311,6 +311,17 @@ void SvcWrap(Core::System& system) { func(system); } +template +void SvcWrap(Core::System& system) { + func(system, static_cast(Param(system, 0))); +} + +template +void SvcWrap(Core::System& system) { + func(system, static_cast(Param(system, 0)), Param(system, 1), Param(system, 2), + Param(system, 3)); +} + template void SvcWrap(Core::System& system) { func(system, static_cast(Param(system, 0))); -- cgit v1.2.3