diff options
| author | Camille Mougey <commial@gmail.com> | 2016-06-06 17:58:28 +0200 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2016-06-06 17:58:28 +0200 |
| commit | 361f0f44248cb787c88d7359acaac1d68cefc7f3 (patch) | |
| tree | 86d3b01fc0ce67672faf9972da721ace54073d23 /test/arch/arm/arch.py | |
| parent | d21cac6384e9b9bec08d5e9a797384b1868db0be (diff) | |
| parent | 0e89fe976f3d302c5a827724abb3ca6bd24c3180 (diff) | |
| download | miasm-361f0f44248cb787c88d7359acaac1d68cefc7f3.tar.gz miasm-361f0f44248cb787c88d7359acaac1d68cefc7f3.zip | |
Merge pull request #375 from serpilliere/add_armt_instr
Arch/armt: add pld instruction
Diffstat (limited to 'test/arch/arm/arch.py')
| -rw-r--r-- | test/arch/arm/arch.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/arch/arm/arch.py b/test/arch/arm/arch.py index 2ffbd3b1..a00fe3d6 100644 --- a/test/arch/arm/arch.py +++ b/test/arch/arm/arch.py @@ -245,6 +245,11 @@ reg_tests_arm = [ ("XXXXXXXX REV R0, R2", "320FBFE6"), + ('XXXXXXXX PLD [R1]', + '00F0D1F5'), + ('XXXXXXXX PLD [R1, 0x1C]', + '1CF0D1F5'), + ] ts = time.time() |