#[repr(C)]
pub struct AsmCoreMachine {Show 15 fields
pub registers: [u64; 32],
pub pc: u64,
pub next_pc: u64,
pub running: u8,
pub cycles: u64,
pub max_cycles: u64,
pub chaos_mode: u8,
pub chaos_seed: u32,
pub reset_signal: u8,
pub isa: u8,
pub version: u32,
pub flags: [u8; 1024],
pub memory: [u8; 4194304],
pub frames: [u8; 16],
pub traces: [Trace; 8192],
}
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.