pub enum M68kType {
MC68000,
MC68008,
MC68010,
MC68020,
MC68030,
}
Expand description
The variant of the 68k family of CPUs that is being emulated
This can be used as a shorthand for creating a CpuInfo that can be used by the simuation code to determine behaviour
Variants§
Trait Implementations§
source§impl Ord for M68kType
impl Ord for M68kType
source§impl PartialEq for M68kType
impl PartialEq for M68kType
source§impl PartialOrd for M68kType
impl PartialOrd for M68kType
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for M68kType
impl Eq for M68kType
impl StructuralPartialEq for M68kType
Auto Trait Implementations§
impl Freeze for M68kType
impl RefUnwindSafe for M68kType
impl Send for M68kType
impl Sync for M68kType
impl Unpin for M68kType
impl UnwindSafe for M68kType
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
source§impl<T, S> IntoAddress<T> for Swhere
T: FromAddress<S>,
impl<T, S> IntoAddress<T> for Swhere
T: FromAddress<S>,
source§fn into_address(self) -> T
fn into_address(self) -> T
Translate the given address into an address of type
T