pub struct M68kState {
pub status: Status,
pub current_ipl: InterruptPriority,
pub pending_ipl: InterruptPriority,
pub pc: u32,
pub sr: u16,
pub d_reg: [u32; 8],
pub a_reg: [u32; 7],
pub ssp: u32,
pub usp: u32,
pub vbr: u32,
}
Fields§
§status: Status
§current_ipl: InterruptPriority
§pending_ipl: InterruptPriority
§pc: u32
§sr: u16
§d_reg: [u32; 8]
§a_reg: [u32; 7]
§ssp: u32
§usp: u32
§vbr: u32
Implementations§
Trait Implementations§
source§impl PartialEq for M68kState
impl PartialEq for M68kState
impl Eq for M68kState
impl StructuralPartialEq for M68kState
Auto Trait Implementations§
impl Freeze for M68kState
impl RefUnwindSafe for M68kState
impl Send for M68kState
impl Sync for M68kState
impl Unpin for M68kState
impl UnwindSafe for M68kState
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