#[repr(u32)]pub enum mos65xx_group_type {
MOS65XX_GRP_INVALID = 0,
MOS65XX_GRP_JUMP = 1,
MOS65XX_GRP_CALL = 2,
MOS65XX_GRP_RET = 3,
MOS65XX_GRP_INT = 4,
MOS65XX_GRP_IRET = 5,
MOS65XX_GRP_BRANCH_RELATIVE = 6,
MOS65XX_GRP_ENDING = 7,
}Expand description
Group of MOS65XX instructions
Variants§
MOS65XX_GRP_INVALID = 0
< CS_GRP_INVALID
MOS65XX_GRP_JUMP = 1
< = CS_GRP_JUMP
MOS65XX_GRP_CALL = 2
< = CS_GRP_RET
MOS65XX_GRP_RET = 3
< = CS_GRP_RET
MOS65XX_GRP_INT = 4
< = CS_GRP_INT
MOS65XX_GRP_IRET = 5
< = CS_GRP_IRET
MOS65XX_GRP_BRANCH_RELATIVE = 6
< = CS_GRP_BRANCH_RELATIVE
MOS65XX_GRP_ENDING = 7
Trait Implementations§
Source§impl Clone for mos65xx_group_type
impl Clone for mos65xx_group_type
Source§fn clone(&self) -> mos65xx_group_type
fn clone(&self) -> mos65xx_group_type
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for mos65xx_group_type
impl Debug for mos65xx_group_type
Source§impl Hash for mos65xx_group_type
impl Hash for mos65xx_group_type
Source§impl PartialEq for mos65xx_group_type
impl PartialEq for mos65xx_group_type
impl Copy for mos65xx_group_type
impl Eq for mos65xx_group_type
impl StructuralPartialEq for mos65xx_group_type
Auto Trait Implementations§
impl Freeze for mos65xx_group_type
impl RefUnwindSafe for mos65xx_group_type
impl Send for mos65xx_group_type
impl Sync for mos65xx_group_type
impl Unpin for mos65xx_group_type
impl UnwindSafe for mos65xx_group_type
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