Browse Source

fix detection of PLD instructions

Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
tags/v0.3.0-rc0
Lennert Buytenhek 14 years ago
committed by David Brownell
parent
commit
9b9bc78ef1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/target/arm_disassembler.c

+ 1
- 1
src/target/arm_disassembler.c View File

@@ -110,7 +110,7 @@ static int evaluate_pld(uint32_t opcode,
uint32_t address, arm_instruction_t *instruction)
{
/* PLD */
if ((opcode & 0x0d70f0000) == 0x0550f000)
if ((opcode & 0x0d70f000) == 0x0550f000)
{
instruction->type = ARM_PLD;



Loading…
Cancel
Save