diff options
| author | Camille Mougey <commial@gmail.com> | 2016-06-20 12:15:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-20 12:15:09 +0200 |
| commit | 6622c7f2ec25f6f9830ee741b4b1d70dbd76e1f9 (patch) | |
| tree | 1742b56a2910b413f57c58ee31a61870950a2168 /test | |
| parent | 8134c3b0c08889a7cf3d8c991bd6bc305b950b7d (diff) | |
| parent | a3b32c6910857b2f1249e94cceb7d4c13bb6c802 (diff) | |
| download | miasm-6622c7f2ec25f6f9830ee741b4b1d70dbd76e1f9.tar.gz miasm-6622c7f2ec25f6f9830ee741b4b1d70dbd76e1f9.zip | |
Merge pull request #380 from serpilliere/fix_x86_xchg
X86: add no_rex/fix xchg
Diffstat (limited to 'test')
| -rw-r--r-- | test/arch/x86/arch.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index 9a7f3d8a..db242236 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -2224,6 +2224,9 @@ reg_tests = [ (m32, "00000000 NOP", "90"), + (m64, "00000000 XCHG RAX, R8", + "4990"), + (m32, "00000000 XCHG BYTE PTR [EAX], AL", "8600"), |