diff options
author | iximeow <me@iximeow.net> | 2020-07-18 12:15:52 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-07-18 12:16:25 -0700 |
commit | e2b2f100a23f46c5ece22cf4185facbd2c6d51ae (patch) | |
tree | 43e6b89522e810ea8bbcc644398204dd2a03cfc7 /src/long_mode/uarch.rs | |
parent | 1056fe08ddf0c1e7f7c3b10e9e6cafbf295ce632 (diff) |
intel supported cmpxchg16b from the first x86_64 architecture
Diffstat (limited to 'src/long_mode/uarch.rs')
-rw-r--r-- | src/long_mode/uarch.rs | 1 |
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() } |