diff options
| author | Camille Mougey <commial@gmail.com> | 2016-09-15 17:37:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-15 17:37:50 +0200 |
| commit | 87e54bf72bead0ff71d7c2a5f9461ff96eb49e9b (patch) | |
| tree | f0ea88a518dd6ea9f0741286130ff62b3db1bb08 /test | |
| parent | 77654852fc08d1770dc6c1b95376bff45602f7d9 (diff) | |
| parent | 7429d8e676bf2e605bb98f864847127208adb26b (diff) | |
| download | miasm-87e54bf72bead0ff71d7c2a5f9461ff96eb49e9b.tar.gz miasm-87e54bf72bead0ff71d7c2a5f9461ff96eb49e9b.zip | |
Merge pull request #429 from serpilliere/arm_updt_bkpt
Arm: fix bkpt
Diffstat (limited to 'test')
| -rw-r--r-- | test/arch/arm/arch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/arch/arm/arch.py b/test/arch/arm/arch.py index 6b010d20..d2022238 100644 --- a/test/arch/arm/arch.py +++ b/test/arch/arm/arch.py @@ -151,8 +151,8 @@ reg_tests_arm = [ "7420696e"), #("xxxxxxxx UND 0x0, 0x0", # "100000e6"), - ("xxxxxxxx BKPT 0x0, 0x0", - "700020e1"), + ('XXXXXXXX BKPT 0x1234', + '742321e1'), ("c00d153c LDRH R2, [R4, 0xCA]", "ba2cd4e1"), ("c00d18a8 LDRH R6, [R12]", |