about summary refs log tree commit diff stats
path: root/src/include/my_cpuid.h
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-06 10:24:33 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-06 10:24:33 +0100
commitaed9ebd7d66fb3c4e9954c5d0759c2446b820ed3 (patch)
tree7a89f8fbcb4222bf80d631fe208fe00d1c4ae930 /src/include/my_cpuid.h
parentf335df23ec5276ebf67c0a9d59fb504da60839aa (diff)
downloadbox64-aed9ebd7d66fb3c4e9954c5d0759c2446b820ed3.tar.gz
box64-aed9ebd7d66fb3c4e9954c5d0759c2446b820ed3.zip
Added 0F A2 cpuid opcode
Diffstat (limited to 'src/include/my_cpuid.h')
-rw-r--r--src/include/my_cpuid.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/my_cpuid.h b/src/include/my_cpuid.h
new file mode 100644
index 00000000..53792ea0
--- /dev/null
+++ b/src/include/my_cpuid.h
@@ -0,0 +1,8 @@
+#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);
+
+#endif //__MY_CPUID_H__
\ No newline at end of file