From 7a8b2b5fcb61cca121cd6a69845f7ec436d3495f Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 3 May 2020 14:05:42 -0700 Subject: version bump, bumping yaxpeax-arch to 0.0.4 --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index e8775eb..3083938 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ extern crate serde; extern crate yaxpeax_arch; extern crate termion; -use yaxpeax_arch::{Arch, Colorize, Decoder, LengthedInstruction, ShowContextual, YaxColors}; +use yaxpeax_arch::{Arch, AddressDiff, Colorize, Decoder, LengthedInstruction, ShowContextual, YaxColors}; use std::fmt::{self, Display, Formatter}; @@ -56,13 +56,13 @@ impl Display for Instruction { } impl LengthedInstruction for Instruction { - type Unit = ::Address; + type Unit = AddressDiff<::Address>; fn min_size() -> Self::Unit { - 2 + AddressDiff::from_const(2) } fn len(&self) -> Self::Unit { match self.opcode { - _ => 2 + _ => AddressDiff::from_const(2) } } } -- cgit v1.1