Enum capstone::arch::m680x::M680xOperandType [−][src]
pub enum M680xOperandType { Reg(RegId), Imm(i32), Indexed(M680xOpIdx), Extended { address: u16, indirect: bool, }, Direct { direct_addr: u8, }, Relative { address: u16, offset: i16, }, Constant(u8), Invalid, }
Expand description
M680X operand
Variants
Reg(RegId)
Register
Immediate
Indexed(M680xOpIdx)
Indexed addressing operand
Extended addressing operand
Show fields
Direct addressing operand
Relative addressing operand
Constant operand (displayed as number only)
Used e.g. for a bit index or page number.
Invalid
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more