Struct libnoentiendo::systems::klaus::KlausSystem
source · pub struct KlausSystem { /* private fields */ }
Expand description
A system used to run Klaus Dormann’s 6502 CPU test suite.
Trait Implementations§
source§impl BuildableSystem<RomFile, KlausSystemConfig> for KlausSystem
impl BuildableSystem<RomFile, KlausSystemConfig> for KlausSystem
A factory for creating a system that runs Klaus Dormann’s 6502 CPU test suite.
source§fn build(
rom: RomFile,
config: KlausSystemConfig,
_platform: Arc<dyn PlatformProvider>
) -> Box<dyn System>
fn build( rom: RomFile, config: KlausSystemConfig, _platform: Arc<dyn PlatformProvider> ) -> Box<dyn System>
Instantiate this system from the given roms, configuration, and with I/O provided by the given
platform provider.
source§impl System for KlausSystem
impl System for KlausSystem
source§fn get_cpu_mut(&mut self) -> Box<&mut dyn Cpu>
fn get_cpu_mut(&mut self) -> Box<&mut dyn Cpu>
Return a mutable reference to the CPU used in this system.
source§fn render(&mut self, _framebuffer: &mut [u8], _window: WindowConfig)
fn render(&mut self, _framebuffer: &mut [u8], _window: WindowConfig)
Render the current state of the system to the given framebuffer.
fn attach_trace_handler(&mut self, handler: Box<dyn TraceHandler>)
Auto Trait Implementations§
impl !RefUnwindSafe for KlausSystem
impl !Send for KlausSystem
impl !Sync for KlausSystem
impl Unpin for KlausSystem
impl !UnwindSafe for KlausSystem
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