[][src]Struct zinc64_emu::system::c64::C64

pub struct C64 { /* fields omitted */ }

Methods

impl C64[src]

pub fn build(
    config: Rc<Config>,
    factory: &dyn ChipFactory,
    frame_buffer: Shared<dyn VideoOutput>,
    sound_buffer: Arc<dyn SoundOutput>
) -> C64
[src]

pub fn get_bpm(&self) -> &BreakpointManager[src]

pub fn get_bpm_mut(&mut self) -> &mut BreakpointManager[src]

pub fn get_clock(&self) -> Rc<Clock>[src]

pub fn get_config(&self) -> &Config[src]

pub fn get_cpu(&self) -> &dyn Cpu[src]

pub fn get_cpu_mut(&mut self) -> &mut dyn Cpu[src]

pub fn get_cycles(&self) -> u64[src]

pub fn get_cia_1(&self) -> Shared<dyn Chip>[src]

pub fn get_cia_2(&self) -> Shared<dyn Chip>[src]

pub fn get_datasette(&self) -> Shared<Datassette>[src]

pub fn get_frame_count(&self) -> u32[src]

pub fn get_joystick1(&self) -> &Option<Joystick>[src]

pub fn get_joystick1_mut(&mut self) -> &mut Option<Joystick>[src]

pub fn get_joystick2(&self) -> &Option<Joystick>[src]

pub fn get_joystick2_mut(&mut self) -> &mut Option<Joystick>[src]

pub fn get_keyboard(&mut self) -> &mut Keyboard[src]

pub fn get_sid(&self) -> Shared<dyn Chip>[src]

pub fn get_vic(&self) -> Shared<dyn Chip>[src]

pub fn get_vsync(&self) -> bool[src]

pub fn is_cpu_jam(&self) -> bool[src]

pub fn set_autostart(&mut self, autostart: Option<Autostart>)[src]

pub fn reset_vsync(&self)[src]

pub fn check_breakpoints(&mut self) -> bool[src]

pub fn load(&mut self, data: &[u8], offset: u16)[src]

pub fn reset(&mut self, hard: bool)[src]

pub fn run_frame(&mut self) -> bool[src]

pub fn step(&mut self)[src]

pub fn step_internal(&mut self, tick_fn: &TickFn)[src]

pub fn attach_cartridge(&mut self, cartridge: Cartridge)[src]

pub fn attach_tape(&mut self, tape: Box<dyn Tape>)[src]

pub fn detach_cartridge(&mut self)[src]

pub fn detach_tape(&mut self)[src]

Auto Trait Implementations

impl !Send for C64

impl !Sync for C64

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]