Struct capstone_sys::m680x_op_rel
source · #[repr(C)]pub struct m680x_op_rel {
pub address: u16,
pub offset: i16,
}
Expand description
Instruction’s memory operand referring to relative addressing (Bcc/LBcc)
Fields§
§address: u16
< The absolute address. < calculated as PC + offset. PC is the first < address after the instruction.
offset: i16
< the offset/displacement value
Trait Implementations§
source§impl Clone for m680x_op_rel
impl Clone for m680x_op_rel
source§impl Debug for m680x_op_rel
impl Debug for m680x_op_rel
impl Copy for m680x_op_rel
Auto Trait Implementations§
impl RefUnwindSafe for m680x_op_rel
impl Send for m680x_op_rel
impl Sync for m680x_op_rel
impl Unpin for m680x_op_rel
impl UnwindSafe for m680x_op_rel
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more