pub struct ExecutionState {
pub pc: i16,
pub cir: i16,
pub mar: i16,
pub mdr: i16,
pub acc: i16,
pub ram: [i16; 100],
}
Fields§
§pc: i16
§cir: i16
§mar: i16
§mdr: i16
§acc: i16
§ram: [i16; 100]
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExecutionState
impl RefUnwindSafe for ExecutionState
impl Send for ExecutionState
impl Sync for ExecutionState
impl Unpin for ExecutionState
impl UnwindSafe for ExecutionState
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