diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-10-06 15:25:06 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-10-06 22:34:17 +0200 |
| commit | 0b31f415cb226e2fbda150556a925eba2b49b9f8 (patch) | |
| tree | 48fd8e2f89493ff612f75784ee80495b4b6b8c30 /test/arch/x86/arch.py | |
| parent | 369371ca24c5f4fd6670cb36b80fbd29650de7d0 (diff) | |
| download | miasm-0b31f415cb226e2fbda150556a925eba2b49b9f8.tar.gz miasm-0b31f415cb226e2fbda150556a925eba2b49b9f8.zip | |
X86: fix inc/dec 64bit
Diffstat (limited to 'test/arch/x86/arch.py')
| -rw-r--r-- | test/arch/x86/arch.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index 44f5197e..b866a325 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -848,6 +848,9 @@ reg_tests = [ (m32, "00000000 DEC ECX", "49"), + (m64, "00000000 DEC EBX", + "FFCB"), + (m32, "00000000 DIV BL", "f6f3"), (m32, "00000000 DIV EBX", @@ -1302,6 +1305,9 @@ reg_tests = [ (m32, "00000000 INC ECX", "41"), + (m64, "00000000 INC EBX", + "FFC3"), + (m32, "00000000 INT 0x3", "CC"), (m32, "00000000 INT 0x21", |