From de36d82ddec86eb0aa3384af935a47fe2879935e Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 6 May 2014 23:34:20 -0400 Subject: - added debug logging to syscall.cpp - added stubbed HLE syscall functions for svc_GetResourceLimit and svc_GetResourceLimitCurrentValues --- src/core/hle/function_wrappers.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'src/core/hle/function_wrappers.h') diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h index 53bfafa7..18b01b14 100644 --- a/src/core/hle/function_wrappers.h +++ b/src/core/hle/function_wrappers.h @@ -729,7 +729,17 @@ template void WrapI_ICU RETURN(retval); } -template void WrapI_VUUUUU(){ +template void WrapI_VU(){ + u32 retval = func(Memory::GetPointer(PARAM(0)), PARAM(1)); + RETURN(retval); +} + +template void WrapI_VUVI(){ + u32 retval = func(Memory::GetPointer(PARAM(0)), PARAM(1), Memory::GetPointer(PARAM(2)), PARAM(3)); + RETURN(retval); +} + +template void WrapI_VUUUUU(){ u32 retval = func(Memory::GetPointer(PARAM(0)), PARAM(1), PARAM(2), PARAM(3), PARAM(4), PARAM(5)); RETURN(retval); } -- cgit v1.2.3