aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2020-07-18 12:15:52 -0700
committeriximeow <me@iximeow.net>2020-07-18 12:16:25 -0700
commite2b2f100a23f46c5ece22cf4185facbd2c6d51ae (patch)
tree43e6b89522e810ea8bbcc644398204dd2a03cfc7
parent1056fe08ddf0c1e7f7c3b10e9e6cafbf295ce632 (diff)
intel supported cmpxchg16b from the first x86_64 architecture
-rw-r--r--src/long_mode/uarch.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/long_mode/uarch.rs b/src/long_mode/uarch.rs
index 080821c..4ade835 100644
--- a/src/long_mode/uarch.rs
+++ b/src/long_mode/uarch.rs
@@ -116,6 +116,7 @@ pub mod intel {
pub fn netburst() -> InstDecoder {
InstDecoder::minimal()
.with_cmov()
+ .with_cmpxchg16b()
.with_sse3()
}