aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/util.c b/src/util.c
index ffabd1ca..dd7afdf9 100644
--- a/src/util.c
+++ b/src/util.c
@@ -8,22 +8,6 @@
#include "bregs.h" // struct bregs
#include "config.h" // BUILD_STACK_ADDR
-void
-cpuid(u32 index, u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
-{
- // Check for cpu id
- u32 origflags = save_flags();
- restore_flags(origflags ^ F_ID);
- u32 newflags = save_flags();
- restore_flags(origflags);
-
- if (((origflags ^ newflags) & F_ID) != F_ID)
- // no cpuid
- *eax = *ebx = *ecx = *edx = 0;
- else
- __cpuid(index, eax, ebx, ecx, edx);
-}
-
/****************************************************************
* String ops