diff options
author | iximeow <me@iximeow.net> | 2020-01-18 14:33:45 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-01-18 14:33:45 -0800 |
commit | 6d645f565675a491ba3497a71e3721cf9aea8b11 (patch) | |
tree | 27300fbfe81dec27d5c866472246774aa5b3728d /src/lib.rs | |
parent | 9f27904de0ee0698eb5ab817b4755de45b140ccc (diff) |
move pic24 to yaxpeax-arch cratemaster
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -21,6 +21,14 @@ pub struct Instruction { pub opcode: Opcode } +impl Default for Instruction { + fn default() -> Self { + Instruction { + opcode: Opcode::NOP + } + } +} + impl LengthedInstruction for Instruction { type Unit = <PIC24 as Arch>::Address; fn min_size() -> Self::Unit { @@ -65,10 +73,6 @@ pub struct InstDecoder {} impl Decoder<Instruction> for InstDecoder { type Error = DecodeError; - fn decode<T: IntoIterator<Item=u8>>(&self, bytes: T) -> Result<Instruction, Self::Error> { - let mut blank = Instruction { opcode: Opcode::NOP }; - self.decode_into(&mut blank, bytes).map(|_: ()| blank) - } fn decode_into<T: IntoIterator<Item=u8>>(&self, instr: &mut Instruction, bytes: T) -> Result<(), Self::Error> { match bytes.into_iter().next() { Some(0x00) => { |