diff options
author | iximeow <me@iximeow.net> | 2019-03-26 16:25:00 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-01-12 16:10:13 -0800 |
commit | 95ba950995058b68ae0e85413ffd6a317a3812f5 (patch) | |
tree | 360b515bc9659ed93826ccdf7e248a8a0300e87d /src/lib.rs | |
parent | 0adc1ba0b88e4afd55bb080bb8134a56f302ead7 (diff) |
properly color operands, respect contextualized operands when available
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,8 +13,8 @@ use yaxpeax_arch::{Arch, ColorSettings, Decodable, LengthedInstruction}; #[derive(Copy, Clone, Debug, Eq, PartialEq)] pub struct RegSpec { - num: u8, - bank: RegisterBank + pub num: u8, + pub bank: RegisterBank } #[allow(non_snake_case)] |