mirror of
https://github.com/Leonmmcoset/cleonos.git
synced 2026-04-21 10:40:00 +00:00
9 lines
211 B
C
9 lines
211 B
C
typedef unsigned long long u64;
|
|
|
|
static u64 clks_local_counter = 0ULL;
|
|
|
|
u64 cleonos_kelf_entry(u64 tick, u64 run_count) {
|
|
clks_local_counter += (run_count ^ tick) & 0xFFULL;
|
|
return clks_local_counter;
|
|
}
|