more function name changes

This commit is contained in:
Colin Davidson
2023-02-21 06:46:36 -08:00
parent 1fc3a25f47
commit 91dccf8d62
4 changed files with 49 additions and 55 deletions
+3 -3
View File
@@ -54,10 +54,10 @@ when ODIN_ARCH == .amd64 {
_, _, _, edx := intrinsics.x86_cpuid(0x80_000_007, 0)
return (edx & (1 << 8)) != 0
}
}
x86_get_tsc_frequency :: proc "contextless" () -> (u64, bool) {
return _x86_get_tsc_frequency()
}
get_tsc_frequency :: proc "contextless" () -> (u64, bool) {
return _get_tsc_frequency()
}
/*