diff options
| author | jetsecurity <jetsecurity@protonmail.com> | 2018-09-27 22:47:25 +0200 |
|---|---|---|
| committer | jetsecurity <jetsecurity@protonmail.com> | 2018-09-27 23:45:20 +0200 |
| commit | e2da18cefab031060f53ea60547c9f6ce8a775c8 (patch) | |
| tree | 34e4b566c1e929d7262d870f7c945bab0e8758c2 | |
| parent | efcba9e3d0c14bb015380f73757a288f9cc6da2a (diff) | |
| download | miasm-e2da18cefab031060f53ea60547c9f6ce8a775c8.tar.gz miasm-e2da18cefab031060f53ea60547c9f6ce8a775c8.zip | |
ARM Thumb: Add test for EOR (immediate) instruction
| -rw-r--r-- | test/arch/arm/arch.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/arch/arm/arch.py b/test/arch/arm/arch.py index d92c24b2..8e3284dc 100644 --- a/test/arch/arm/arch.py +++ b/test/arch/arm/arch.py @@ -667,6 +667,9 @@ reg_tests_armt = [ ("xxxxxxxx EOR R3, R3, R1", "83EA0103"), + ("xxxxxxxx EOR R0, R1, 0x42", + "81F04200"), + ("xxxxxxxx DSB SY", "bff34f8f"), |