svc: Implement GetSystemTick.

This commit is contained in:
bunnei
2018-01-11 21:59:31 -05:00
parent 305035b503
commit 97ef21e166
2 changed files with 21 additions and 2 deletions

View File

@ -148,6 +148,14 @@ void SvcWrap() {
FuncReturn(func());
}
////////////////////////////////////////////////////////////////////////////////////////////////////
// Function wrappers that return type u64
template <u64 func()>
void SvcWrap() {
FuncReturn(func());
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// Function wrappers that return type void