summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc_wrap.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-11-27 00:23:12 +0100
committerLioncash <mathew1800@gmail.com>2018-11-27 03:10:31 +0100
commit4ef2af8c98354aea8a4a3758d798c6a2b7bf9321 (patch)
tree229565ce72652a2cef9fb051d8340c371e810016 /src/core/hle/kernel/svc_wrap.h
parentMerge pull request #1763 from ReinUsesLisp/bfi (diff)
downloadyuzu-4ef2af8c98354aea8a4a3758d798c6a2b7bf9321.tar
yuzu-4ef2af8c98354aea8a4a3758d798c6a2b7bf9321.tar.gz
yuzu-4ef2af8c98354aea8a4a3758d798c6a2b7bf9321.tar.bz2
yuzu-4ef2af8c98354aea8a4a3758d798c6a2b7bf9321.tar.lz
yuzu-4ef2af8c98354aea8a4a3758d798c6a2b7bf9321.tar.xz
yuzu-4ef2af8c98354aea8a4a3758d798c6a2b7bf9321.tar.zst
yuzu-4ef2af8c98354aea8a4a3758d798c6a2b7bf9321.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc_wrap.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/hle/kernel/svc_wrap.h b/src/core/hle/kernel/svc_wrap.h
index 233a99fb0..fa1116624 100644
--- a/src/core/hle/kernel/svc_wrap.h
+++ b/src/core/hle/kernel/svc_wrap.h
@@ -43,6 +43,14 @@ void SvcWrap() {
FuncReturn(func(static_cast<u32>(Param(0)), static_cast<u32>(Param(1))).raw);
}
+template <ResultCode func(u32*)>
+void SvcWrap() {
+ u32 param = 0;
+ const u32 retval = func(&param).raw;
+ Core::CurrentArmInterface().SetReg(1, param);
+ FuncReturn(retval);
+}
+
template <ResultCode func(u32*, u32)>
void SvcWrap() {
u32 param_1 = 0;