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