about summary refs log tree commit diff stats
path: root/test/arch/arm/arch.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2024-03-21 18:55:23 +0100
committerGitHub <noreply@github.com>2024-03-21 18:55:23 +0100
commit88432b04061920e77a393bb18ddbba70d2edca83 (patch)
tree53e06c8292e69144103d337c6fec99800d7ecce0 /test/arch/arm/arch.py
parent2b1273e097495cbce6df53b0e5d9f03692df82b0 (diff)
parent16cc7d3b374442808b1d653a0cc6c2477a4a750f (diff)
downloadmiasm-88432b04061920e77a393bb18ddbba70d2edca83.tar.gz
miasm-88432b04061920e77a393bb18ddbba70d2edca83.zip
Merge pull request #1457 from W0ni/arm_handle_cf_shifters
[ARM] compute cf for shift/rotate
Diffstat (limited to 'test/arch/arm/arch.py')
-rw-r--r--test/arch/arm/arch.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/arch/arm/arch.py b/test/arch/arm/arch.py
index 42e80772..a3f3a974 100644
--- a/test/arch/arm/arch.py
+++ b/test/arch/arm/arch.py
@@ -241,7 +241,12 @@ reg_tests_arm = [
      '110f111e'),
     ('XXXXXXXX    MCRCC      p15, 0x0, R8, c2, c0, 0x1',
      '308f023e'),
-
+    ('XXXXXXXX    MOV        R4, R4 ASR 0x20',
+     '4440a0e1'),
+    ('XXXXXXXX    MOV        R2, R5 LSR 0x20',
+     '2520a0e1'),
+    ('XXXXXXXX    MOVS       R2, R5 LSR 0x20',
+     '2520b0e1'),
 
 ]
 ts = time.time()