diff options
| author | serpilliere <devnull@localhost> | 2014-07-03 10:19:23 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-07-03 10:19:23 +0200 |
| commit | 95de9efd4f769b461204d238261bd7cac25ba8b3 (patch) | |
| tree | 65348b88442050f1fa0bb3514a8be14a05e7dbc1 | |
| parent | fb7589dd51b0cff632b71b7098c2791ba45e5b88 (diff) | |
| download | miasm-95de9efd4f769b461204d238261bd7cac25ba8b3.tar.gz miasm-95de9efd4f769b461204d238261bd7cac25ba8b3.zip | |
Arm: update reg tests
| -rw-r--r-- | test/arch/arm/arch.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/test/arch/arm/arch.py b/test/arch/arm/arch.py index 5d658c74..5b5ec40f 100644 --- a/test/arch/arm/arch.py +++ b/test/arch/arm/arch.py @@ -149,8 +149,8 @@ reg_tests_arm = [ "f9efbe8e"), ("C00F3D24 MCRVS p0, 0x3, R2, c9, c4, 0x3", "7420696e"), - ("xxxxxxxx UND 0x0, 0x0", - "100000e6"), + #("xxxxxxxx UND 0x0, 0x0", + # "100000e6"), ("xxxxxxxx BKPT 0x0, 0x0", "700020e1"), ("c00d153c LDRH R2, [R4, 0xCA]", @@ -219,6 +219,15 @@ reg_tests_arm = [ ("6330A0E1 MOV R3, R3 RRX", "6330A0E1"), + ("XXXXXXXX UXTB R5, R2", + "7250EFE6"), + + ("XXXXXXXX UXTH R7, R3", + "7370FFE6"), + ("XXXXXXXX UBFX R1, R2, 0x10, 0x8", + "5218E7E7"), + + ] ts = time.time() |