mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 15:47:51 +00:00
svc: Implement GetSystemTick.
This commit is contained in:
parent
cfb9f39472
commit
e2db6b98fe
2 changed files with 21 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue