diff options
author | iximeow <me@iximeow.net> | 2020-12-06 11:55:59 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-12-06 12:00:11 -0800 |
commit | bb39c8a890a0650f7762cd100418d735976b5c1e (patch) | |
tree | b6cf46bd81a41c932d039d928d0723c39f435cf5 /src/armv7.rs | |
parent | 72109c2385c7b0940072f31fc3bcbeed68006060 (diff) |
fill out more missing thumb2 decoder
Diffstat (limited to 'src/armv7.rs')
-rw-r--r-- | src/armv7.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/armv7.rs b/src/armv7.rs index 73530fb..742d1db 100644 --- a/src/armv7.rs +++ b/src/armv7.rs @@ -453,6 +453,8 @@ impl <T: fmt::Write, Color: fmt::Display, Y: YaxColors<Color>> Colorize<T, Color Opcode::UBFX | Opcode::BFI | Opcode::BFC | + Opcode::RBIT | + Opcode::SEL | Opcode::MOV | Opcode::MOVT | Opcode::MVN => { write!(out, "{}", colors.data_op(self)) }, @@ -663,6 +665,8 @@ impl Display for Opcode { Opcode::DBG => { write!(f, "dbg") }, Opcode::PLD => { write!(f, "pld") }, Opcode::PLI => { write!(f, "pli") }, + Opcode::RBIT => { write!(f, "rbit") }, + Opcode::SEL => { write!(f, "sel") }, } } } @@ -825,6 +829,8 @@ pub enum Opcode { DBG, PLD, PLI, + RBIT, + SEL, } static DATA_PROCESSING_OPCODES: [Opcode; 16] = [ |