aboutsummaryrefslogtreecommitdiff
path: root/sys/i386
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-11-03 14:59:05 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-11-03 14:59:05 +0000
commitb05170b6d7c6efc347eda5094512e64deb782539 (patch)
tree4dd3c5f0592e3a7fdf0cacb6541a27d35e7e7b98 /sys/i386
parent5e7c89e4883d582e7cdec92157a506c1ba534172 (diff)
downloadsrc-b05170b6d7c6efc347eda5094512e64deb782539.tar.gz
src-b05170b6d7c6efc347eda5094512e64deb782539.zip
Add AMD Features NX and LM.
Notes
Notes: svn path=/head/; revision=121955
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/i386/identcpu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/i386/i386/identcpu.c b/sys/i386/i386/identcpu.c
index 343b77a0f7d4..52df3de2d774 100644
--- a/sys/i386/i386/identcpu.c
+++ b/sys/i386/i386/identcpu.c
@@ -1096,7 +1096,7 @@ print_AMD_features(void)
"\022PGE36" /* 36 bit address space support */
"\023RSVD" /* Reserved, unknown */
"\024MP" /* Multiprocessor Capable */
- "\025<b20>"
+ "\025NX" /* Has EFER.NXE, NX (no execute pte bit) */
"\026<b21>"
"\027AMIE" /* AMD MMX Instruction Extensions */
"\030MMX"
@@ -1105,9 +1105,9 @@ print_AMD_features(void)
"\033<b26>"
"\034<b27>"
"\035<b28>"
- "\036<b29>"
+ "\036LM" /* Long mode */
"\037DSP" /* AMD 3DNow! Instruction Extensions */
- "\0403DNow!"
+ "\0403DNow!" /* AMD 3DNow! Instructions */
);
}
#endif