This commit is contained in:
2026-04-10 20:40:28 +08:00
parent 30b2a126c5
commit d023ee8459
13 changed files with 404 additions and 20 deletions

View File

@@ -0,0 +1,8 @@
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;
}