diff options
Diffstat (limited to '')
| -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", |