aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2002-01-22 01:28:32 +0000
committerPeter Wemm <peter@FreeBSD.org>2002-01-22 01:28:32 +0000
commit755a58526026e6df94d776a85fef0a5471f2e7d0 (patch)
tree008b11b1b1e619c452402ad73e96b57e97e4550e
parentee6ebaaa18d38e4c89fce64eaf4542bba361bead (diff)
downloadsrc-755a58526026e6df94d776a85fef0a5471f2e7d0.tar.gz
src-755a58526026e6df94d776a85fef0a5471f2e7d0.zip
List bit 18 (reserved, apparently present on thunderbird cpus)
and bit 19 (athlon XP/MP rev 0x662 and later) for amd_features. Submitted by: dwcjr
Notes
Notes: svn path=/head/; revision=89631
-rw-r--r--sys/amd64/amd64/identcpu.c4
-rw-r--r--sys/i386/i386/identcpu.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/amd64/amd64/identcpu.c b/sys/amd64/amd64/identcpu.c
index 22fb32ade266..e09e04cf4874 100644
--- a/sys/amd64/amd64/identcpu.c
+++ b/sys/amd64/amd64/identcpu.c
@@ -1012,8 +1012,8 @@ print_AMD_features(u_int *regs)
"\020ICMOV" /* CMOV instruction */
"\021PAT" /* Page attributes table */
"\022PGE36" /* 36 bit address space support */
- "\023<b18>"
- "\024<b19>"
+ "\023RSVD" /* Reserved, unknown */
+ "\024MP" /* Multiprocessor Capable */
"\025<b20>"
"\026<b21>"
"\027AMIE" /* AMD MMX Instruction Extensions */
diff --git a/sys/i386/i386/identcpu.c b/sys/i386/i386/identcpu.c
index 22fb32ade266..e09e04cf4874 100644
--- a/sys/i386/i386/identcpu.c
+++ b/sys/i386/i386/identcpu.c
@@ -1012,8 +1012,8 @@ print_AMD_features(u_int *regs)
"\020ICMOV" /* CMOV instruction */
"\021PAT" /* Page attributes table */
"\022PGE36" /* 36 bit address space support */
- "\023<b18>"
- "\024<b19>"
+ "\023RSVD" /* Reserved, unknown */
+ "\024MP" /* Multiprocessor Capable */
"\025<b20>"
"\026<b21>"
"\027AMIE" /* AMD MMX Instruction Extensions */