aboutsummaryrefslogtreecommitdiff
path: root/src/protected_mode/display.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/protected_mode/display.rs')
-rw-r--r--src/protected_mode/display.rs18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/protected_mode/display.rs b/src/protected_mode/display.rs
index 72bfcb4..33c0cda 100644
--- a/src/protected_mode/display.rs
+++ b/src/protected_mode/display.rs
@@ -3344,7 +3344,11 @@ fn contextualize_intel<T: fmt::Write, Y: YaxColors>(instr: &Instruction, colors:
out.write_str(instr.opcode.name())?;
if instr.opcode == Opcode::XBEGIN {
- return write!(out, " $+{}", colors.number(signed_i32_hex(instr.imm as i32)));
+ if (instr.imm as i32) >= 0 {
+ return write!(out, " $+{}", colors.number(signed_i32_hex(instr.imm as i32)));
+ } else {
+ return write!(out, " ${}", colors.number(signed_i32_hex(instr.imm as i32)));
+ }
}
if instr.operand_count > 0 {
@@ -3369,10 +3373,18 @@ fn contextualize_intel<T: fmt::Write, Y: YaxColors>(instr: &Instruction, colors:
if RELATIVE_BRANCHES.contains(&instr.opcode) {
return match x {
Operand::ImmediateI8(rel) => {
- write!(out, "$+{}", colors.number(signed_i32_hex(rel as i32)))
+ if rel >= 0 {
+ write!(out, "$+{}", colors.number(signed_i32_hex(rel as i32)))
+ } else {
+ write!(out, "${}", colors.number(signed_i32_hex(rel as i32)))
+ }
}
Operand::ImmediateI32(rel) => {
- write!(out, "$+{}", colors.number(signed_i32_hex(rel)))
+ if rel >= 0 {
+ write!(out, "$+{}", colors.number(signed_i32_hex(rel)))
+ } else {
+ write!(out, "${}", colors.number(signed_i32_hex(rel)))
+ }
}
_ => { unreachable!() }
};