Struct libnoentiendo::systems::pet::PetSystem
source · pub struct PetSystem { /* private fields */ }
Expand description
The Commodore PET system.
Trait Implementations§
source§impl BuildableSystem<PetSystemRoms, PetSystemConfig> for PetSystem
impl BuildableSystem<PetSystemRoms, PetSystemConfig> for PetSystem
source§fn build(
roms: PetSystemRoms,
config: PetSystemConfig,
platform: Arc<dyn PlatformProvider>
) -> Box<dyn System>
fn build( roms: PetSystemRoms, config: PetSystemConfig, 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 PetSystem
impl System for PetSystem
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], config: WindowConfig)
fn render(&mut self, framebuffer: &mut [u8], config: 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 PetSystem
impl !Send for PetSystem
impl !Sync for PetSystem
impl Unpin for PetSystem
impl !UnwindSafe for PetSystem
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