summaryrefslogtreecommitdiff
path: root/src/display.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/display.rs')
-rw-r--r--src/display.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/display.rs b/src/display.rs
index cd5abfb..c40be08 100644
--- a/src/display.rs
+++ b/src/display.rs
@@ -483,6 +483,9 @@ impl fmt::Display for Operand {
Operand::RegShiftOffset { base, shift, offset } => {
write!(f, "R{}<<{} + {:#x}", base, shift, offset)
}
+ Operand::RegOffsetInc { base, offset } => {
+ write!(f, "R{}++#{:#x}", base, offset)
+ }
Operand::RegOffsetCirc { base, offset, mu } => {
write!(f, "R{}++#{:#x}:circ(M{})", base, offset, mu)
}