summaryrefslogtreecommitdiff
path: root/testing/archboot/vmware-detect.c
diff options
context:
space:
mode:
Diffstat (limited to 'testing/archboot/vmware-detect.c')
-rw-r--r--testing/archboot/vmware-detect.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/archboot/vmware-detect.c b/testing/archboot/vmware-detect.c
new file mode 100644
index 000000000..d242a388d
--- /dev/null
+++ b/testing/archboot/vmware-detect.c
@@ -0,0 +1,13 @@
+#include <stdio.h>
+int main() {
+ unsigned char idtr[6];
+ asm("sidt %0" : "=m" (idtr));
+ if(0xff==idtr[5])
+ {
+ return 0;
+ }
+ else
+ {
+ return 1;
+ }
+}