about summary refs log tree commit diff stats
path: root/test/arch/arm/arch.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2017-09-24 19:06:29 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2017-09-24 19:06:29 +0200
commita3fb47b449057c1daa0b6e57c2c3ba4dd7045f37 (patch)
treea00e460c431d09f13ae76084b0622d681083b104 /test/arch/arm/arch.py
parentf280c6053956f88912c4ff360b21ccea6e45ed43 (diff)
downloadmiasm-a3fb47b449057c1daa0b6e57c2c3ba4dd7045f37.tar.gz
miasm-a3fb47b449057c1daa0b6e57c2c3ba4dd7045f37.zip
Armt: add instr nop/cps/wfi
Diffstat (limited to '')
-rw-r--r--test/arch/arm/arch.py11
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