diff options
author | iximeow <me@iximeow.net> | 2020-01-18 14:33:11 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-01-18 14:33:11 -0800 |
commit | 8e0ab8a90137c565ab727eaa37ef3a6d9564f13c (patch) | |
tree | a9394a58320a68f745605e84018758daeca04813 /src/lib.rs | |
parent | 03a5487c5819b15ca31f78db2372b1e09cc23718 (diff) |
get pic18 towards using no_std, switch to yaxpeax-arch crate
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -84,8 +84,8 @@ impl yaxpeax_arch::Instruction for Instruction { fn well_defined(&self) -> bool { true } } -impl Instruction { - pub fn blank() -> Instruction { +impl Default for Instruction { + fn default() -> Instruction { Instruction { opcode: Opcode::NOP, operands: [Operand::Nothing, Operand::Nothing] @@ -196,10 +196,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::blank(); - self.decode_into(&mut blank, bytes).map(|_: ()| blank) - } fn decode_into<T: IntoIterator<Item=u8>>(&self, inst: &mut Instruction, bytes: T) -> Result<(), Self::Error> { let mut bytes_iter = bytes.into_iter(); let word: Vec<u8> = bytes_iter.by_ref().take(2).collect(); |