diff options
| author | Camille Mougey <commial@gmail.com> | 2017-10-03 15:26:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-03 15:26:31 +0200 |
| commit | b6b4b7360ecdabb9fc7949c461572754ce36a590 (patch) | |
| tree | a00e460c431d09f13ae76084b0622d681083b104 /test | |
| parent | 962a93e30bccdbd8ef7c39b9e1cac0d16105b94d (diff) | |
| parent | a3fb47b449057c1daa0b6e57c2c3ba4dd7045f37 (diff) | |
| download | miasm-b6b4b7360ecdabb9fc7949c461572754ce36a590.tar.gz miasm-b6b4b7360ecdabb9fc7949c461572754ce36a590.zip | |
Merge pull request #617 from serpilliere/updt_armt
Updt armt
Diffstat (limited to 'test')
| -rw-r--r-- | test/arch/arm/arch.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/arch/arm/arch.py b/test/arch/arm/arch.py index cb0e56fe..3ba2dbd4 100644 --- a/test/arch/arm/arch.py +++ b/test/arch/arm/arch.py @@ -478,6 +478,17 @@ reg_tests_armt = [ ("xxxxxxxx SVC 0x13", "13df"), + ("xxxxxxxx NOP ", + "00bf"), + + ("xxxxxxxx CPSID AIF", + "77B6"), + ("xxxxxxxx CPSIE I", + "62B6"), + + ("xxxxxxxx WFI ", + "30bf"), + ] print "#" * 40, 'armthumb', '#' * 40 |