mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-02-09 19:25:10 +01:00
kern: SvcGetSystemTick
This commit is contained in:
parent
4bb9ef061a
commit
3fb3beeaff
@ -21,20 +21,22 @@ namespace ams::kern::svc {
|
||||
|
||||
namespace {
|
||||
|
||||
|
||||
int64_t GetSystemTick() {
|
||||
return KHardwareTimer::GetTick();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* ============================= 64 ABI ============================= */
|
||||
|
||||
int64_t GetSystemTick64() {
|
||||
MESOSPHERE_PANIC("Stubbed SvcGetSystemTick64 was called.");
|
||||
return GetSystemTick();
|
||||
}
|
||||
|
||||
/* ============================= 64From32 ABI ============================= */
|
||||
|
||||
int64_t GetSystemTick64From32() {
|
||||
MESOSPHERE_PANIC("Stubbed SvcGetSystemTick64From32 was called.");
|
||||
return GetSystemTick();
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user