Enum capstone_sys::mos65xx_reg
source · #[repr(u32)]pub enum mos65xx_reg {
MOS65XX_REG_INVALID = 0,
MOS65XX_REG_ACC = 1,
MOS65XX_REG_X = 2,
MOS65XX_REG_Y = 3,
MOS65XX_REG_P = 4,
MOS65XX_REG_SP = 5,
MOS65XX_REG_DP = 6,
MOS65XX_REG_B = 7,
MOS65XX_REG_K = 8,
MOS65XX_REG_ENDING = 9,
}
Expand description
MOS65XX registers and special registers
Variants§
MOS65XX_REG_INVALID = 0
MOS65XX_REG_ACC = 1
< accumulator
MOS65XX_REG_X = 2
< X index register
MOS65XX_REG_Y = 3
< Y index register
MOS65XX_REG_P = 4
< status register
MOS65XX_REG_SP = 5
< stack pointer register
MOS65XX_REG_DP = 6
< direct page register
MOS65XX_REG_B = 7
< data bank register
MOS65XX_REG_K = 8
< program bank register
MOS65XX_REG_ENDING = 9
Trait Implementations§
source§impl Clone for mos65xx_reg
impl Clone for mos65xx_reg
source§fn clone(&self) -> mos65xx_reg
fn clone(&self) -> mos65xx_reg
Returns a copy 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_reg
impl Debug for mos65xx_reg
source§impl Hash for mos65xx_reg
impl Hash for mos65xx_reg
source§impl PartialEq for mos65xx_reg
impl PartialEq for mos65xx_reg
source§fn eq(&self, other: &mos65xx_reg) -> bool
fn eq(&self, other: &mos65xx_reg) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for mos65xx_reg
impl Eq for mos65xx_reg
impl StructuralPartialEq for mos65xx_reg
Auto Trait Implementations§
impl RefUnwindSafe for mos65xx_reg
impl Send for mos65xx_reg
impl Sync for mos65xx_reg
impl Unpin for mos65xx_reg
impl UnwindSafe for mos65xx_reg
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