Implement svcBreak

This commit is contained in:
archshift 2015-05-16 22:06:59 -07:00
parent 9fb9750411
commit 11057488f9
2 changed files with 17 additions and 1 deletions

View file

@ -166,6 +166,10 @@ template<void func(const char*)> void Wrap() {
func((char*)Memory::GetPointer(PARAM(0)));
}
template<void func(u8)> void Wrap() {
func((u8)PARAM(0));
}
#undef PARAM
#undef FuncReturn