diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-06-24 16:07:10 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-06-24 16:07:10 +0200 |
| commit | fa702c0240d0741def3955697067b562cc7a7fcd (patch) | |
| tree | 9c6e9cc3cedffc9ba8249b933c75e88094cd4c64 /src/include | |
| parent | 34bc807bd5218d42e16757ed5dc7edd2751f5bf0 (diff) | |
| download | box64-fa702c0240d0741def3955697067b562cc7a7fcd.tar.gz box64-fa702c0240d0741def3955697067b562cc7a7fcd.zip | |
Improved CPUID a bit more, adding RDRAND (helps geekbench6 avx2 version)
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/my_cpuid.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/my_cpuid.h b/src/include/my_cpuid.h index a8c4dcec..f017d44d 100644 --- a/src/include/my_cpuid.h +++ b/src/include/my_cpuid.h @@ -5,5 +5,6 @@ typedef struct x64emu_s x64emu_t; void my_cpuid(x64emu_t* emu, uint32_t tmp32u); uint32_t helper_getcpu(x64emu_t* emu); // get the numa/cpu id actually running - +uint32_t get_random32(); +uint64_t get_random64(); #endif //__MY_CPUID_H__ \ No newline at end of file |