added CreateThread, CreateMutex, and ReleaseMutex SVC stubs (just parameter decoding for now)

This commit is contained in:
bunnei 2014-05-13 21:58:26 -04:00
parent 1583d2b6f3
commit b5ef630c9c
2 changed files with 38 additions and 7 deletions

View file

@ -740,7 +740,7 @@ template<int func(void*, u32, void*, int)> void WrapI_VUVI(){
}
template<int func(void*, u32, u32, u32, u32, u32)> void WrapI_VUUUUU(){
u32 retval = func(Memory::GetPointer(PARAM(0)), PARAM(1), PARAM(2), PARAM(3), PARAM(4), PARAM(5));
u32 retval = func(NULL, PARAM(0), PARAM(1), PARAM(2), PARAM(3), PARAM(4));
RETURN(retval);
}