diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2011-11-02 23:53:45 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2011-11-02 23:53:45 +0000 |
commit | c2554d71737bc93e0e54ef957592cd239b9dda94 (patch) | |
tree | 52017dbd468bff757c29abf34b15d7a9b5377895 /sys/arch/i386/include/cpu.h | |
parent | 20dae3d2388197cc1c9c67dbe947717d6857e04d (diff) |
display AMD/extended (0x80000001) cpuid flags and remove the
Cyrix 3DNOW flag from normal cpuid flags as it will show up in
extended flags.
ok kettenis@
Diffstat (limited to 'sys/arch/i386/include/cpu.h')
-rw-r--r-- | sys/arch/i386/include/cpu.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/include/cpu.h b/sys/arch/i386/include/cpu.h index bf6481b2c70..81eb8ab03da 100644 --- a/sys/arch/i386/include/cpu.h +++ b/sys/arch/i386/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.120 2011/05/23 09:54:20 claudio Exp $ */ +/* $OpenBSD: cpu.h,v 1.121 2011/11/02 23:53:44 jsg Exp $ */ /* $NetBSD: cpu.h,v 1.35 1996/05/05 19:29:26 christos Exp $ */ /*- @@ -311,7 +311,9 @@ extern char cpu_brandstr[]; extern int cpuid_level; extern int cpu_miscinfo; extern int cpu_feature; +extern int ecpu_feature; extern int cpu_ecxfeature; +extern int ecpu_ecxfeature; extern int cpu_cache_eax; extern int cpu_cache_ebx; extern int cpu_cache_ecx; |