#[repr(u32)]pub enum RegisterM68K {
Show 35 variants
INVALID = 0,
A0 = 1,
A1 = 2,
A2 = 3,
A3 = 4,
A4 = 5,
A5 = 6,
A6 = 7,
A7 = 8,
D0 = 9,
D1 = 10,
D2 = 11,
D3 = 12,
D4 = 13,
D5 = 14,
D6 = 15,
D7 = 16,
SR = 17,
PC = 18,
CR_SFC = 19,
CR_DFC = 20,
CR_VBR = 21,
CR_CACR = 22,
CR_TC = 23,
CR_MMUSR = 24,
CR_SRP = 25,
CR_USP = 26,
CR_MSP = 27,
CR_ISP = 28,
CR_URP = 29,
CR_ITT0 = 30,
CR_ITT1 = 31,
CR_DTT0 = 32,
CR_DTT1 = 33,
ENDING = 34,
}Variants§
INVALID = 0
A0 = 1
A1 = 2
A2 = 3
A3 = 4
A4 = 5
A5 = 6
A6 = 7
A7 = 8
D0 = 9
D1 = 10
D2 = 11
D3 = 12
D4 = 13
D5 = 14
D6 = 15
D7 = 16
SR = 17
PC = 18
CR_SFC = 19
CR_DFC = 20
CR_VBR = 21
CR_CACR = 22
CR_TC = 23
CR_MMUSR = 24
CR_SRP = 25
CR_USP = 26
CR_MSP = 27
CR_ISP = 28
CR_URP = 29
CR_ITT0 = 30
CR_ITT1 = 31
CR_DTT0 = 32
CR_DTT1 = 33
ENDING = 34
Trait Implementations§
Source§impl Clone for RegisterM68K
impl Clone for RegisterM68K
Source§fn clone(&self) -> RegisterM68K
fn clone(&self) -> RegisterM68K
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 RegisterM68K
impl Debug for RegisterM68K
Source§impl From<RegisterM68K> for i32
impl From<RegisterM68K> for i32
Source§fn from(value: RegisterM68K) -> Self
fn from(value: RegisterM68K) -> Self
Converts to this type from the input type.
Source§impl Hash for RegisterM68K
impl Hash for RegisterM68K
Source§impl Ord for RegisterM68K
impl Ord for RegisterM68K
Source§fn cmp(&self, other: &RegisterM68K) -> Ordering
fn cmp(&self, other: &RegisterM68K) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RegisterM68K
impl PartialEq for RegisterM68K
Source§impl PartialOrd for RegisterM68K
impl PartialOrd for RegisterM68K
impl Copy for RegisterM68K
impl Eq for RegisterM68K
impl StructuralPartialEq for RegisterM68K
Auto Trait Implementations§
impl Freeze for RegisterM68K
impl RefUnwindSafe for RegisterM68K
impl Send for RegisterM68K
impl Sync for RegisterM68K
impl Unpin for RegisterM68K
impl UnwindSafe for RegisterM68K
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