Core

Trait Core 

Source
pub trait Core {
    // Required methods
    fn draw_vram(&mut self);
    fn try_beep(&mut self);
    fn run(&mut self);
}
Expand description

Kernel (linking graphic, cpu and audio)

Required Methods§

Source

fn draw_vram(&mut self)

Draw the vram (from CPU) using the API

Source

fn try_beep(&mut self)

Try to play the beep sound using the API (CPU depending too)

Source

fn run(&mut self)

Run the emulation

Implementors§