10 lines
301 B
C
10 lines
301 B
C
#ifndef __MY_CPUID_H__
|
|
#define __MY_CPUID_H__
|
|
#include <stdint.h>
|
|
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__
|