kern: SvcReturnFromException

This commit is contained in:
Michael Scire 2020-07-31 05:52:59 -07:00 committed by SciresM
parent 8cd81b3092
commit 5d462c626c
11 changed files with 647 additions and 56 deletions

View file

@ -79,18 +79,10 @@ namespace ams::kern::svc {
return Break(break_reason, arg, size);
}
void ReturnFromException64(ams::Result result) {
MESOSPHERE_PANIC("Stubbed SvcReturnFromException64 was called.");
}
/* ============================= 64From32 ABI ============================= */
void Break64From32(ams::svc::BreakReason break_reason, ams::svc::Address arg, ams::svc::Size size) {
return Break(break_reason, arg, size);
}
void ReturnFromException64From32(ams::Result result) {
MESOSPHERE_PANIC("Stubbed SvcReturnFromException64From32 was called.");
}
}