diff options
author | iximeow <me@iximeow.net> | 2025-03-22 15:02:40 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2025-03-22 15:02:40 -0700 |
commit | 502db997512afbceb7abb3727b8a37dd7e68042e (patch) | |
tree | 73cc9c695e0a999d5a99e08a24c2e1346e7116bd /src/display.rs | |
parent | af97e4add494d6ad8bada6c1a80c0f14d5eedc8e (diff) |
more loads, fix wrong dest ops for some loads..
Diffstat (limited to 'src/display.rs')
-rw-r--r-- | src/display.rs | 3 |
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) } |