From c9df7910c914d04644aee660d48de1245467f384 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 3 May 2020 13:52:39 -0700 Subject: that instruction is cwd, not cbd --- src/protected_mode/display.rs | 4 ++-- src/protected_mode/mod.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/protected_mode') diff --git a/src/protected_mode/display.rs b/src/protected_mode/display.rs index a5624d6..d072991 100644 --- a/src/protected_mode/display.rs +++ b/src/protected_mode/display.rs @@ -630,7 +630,7 @@ impl fmt::Display for Opcode { &Opcode::CBW => write!(f, "cbw"), &Opcode::CWDE => write!(f, "cwde"), &Opcode::CDQE => write!(f, "cdqe"), - &Opcode::CBD => write!(f, "cbd"), + &Opcode::CWD => write!(f, "cwd"), &Opcode::CDQ => write!(f, "cdq"), &Opcode::CQO => write!(f, "cqo"), &Opcode::ANDN => write!(f, "andn"), @@ -1652,7 +1652,7 @@ impl > Colorize>(decoder: &InstDecoder, mut bytes_iter OperandCode::CVT_DA => { let opwidth = imm_width_from_prefixes(SizeCode::vd, instruction.prefixes); instruction.opcode = match opwidth { - 2 => { Opcode::CBD }, + 2 => { Opcode::CWD }, 4 => { Opcode::CDQ }, _ => { unreachable!("invalid operation width"); }, } -- cgit v1.1