Struct libnoentiendo::systems::klaus::KlausSystemConfig
source · pub struct KlausSystemConfig {
pub pc_report: Option<Rc<Cell<u16>>>,
pub variant: Mos6502Variant,
}
Fields§
§pc_report: Option<Rc<Cell<u16>>>
§variant: Mos6502Variant
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.
Auto Trait Implementations§
impl !RefUnwindSafe for KlausSystemConfig
impl !Send for KlausSystemConfig
impl !Sync for KlausSystemConfig
impl Unpin for KlausSystemConfig
impl !UnwindSafe for KlausSystemConfig
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