diff options
author | iximeow <me@iximeow.net> | 2021-07-22 00:31:02 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-07-22 00:31:02 -0700 |
commit | 4371ed02ac30cb56ec4ddbf60c87e85c183d860b (patch) | |
tree | b24673d757b41cd58966fc0e8ea472cd9b6e6fb0 /test/long_mode/mod.rs | |
parent | a3c2c7486ef6830751fd0a5e2a6cb91b432f28a5 (diff) |
fix incorrect decodes with scas and 67-prefixes1.0.4
Diffstat (limited to 'test/long_mode/mod.rs')
-rw-r--r-- | test/long_mode/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/long_mode/mod.rs b/test/long_mode/mod.rs index ae79761..bfe21bd 100644 --- a/test/long_mode/mod.rs +++ b/test/long_mode/mod.rs @@ -2676,6 +2676,15 @@ fn prefixed_f30f() { } #[test] +fn only_64bit() { + test_display(&[0xae], "scas byte es:[rdi], al"); + test_display(&[0xaf], "scas dword es:[rdi], eax"); + test_display(&[0x67, 0xaf], "scas dword es:[edi], eax"); + test_display(&[0x67, 0xac], "lods al, byte ds:[esi]"); + test_display(&[0x67, 0xaa], "stos byte es:[edi], al"); +} + +#[test] fn test_adx() { test_display(&[0x66, 0x0f, 0x38, 0xf6, 0xc1], "adcx eax, ecx"); test_display(&[0x66, 0x0f, 0x38, 0xf6, 0x01], "adcx eax, dword [rcx]"); |