Struct libnoentiendo::roms::RomFile
source · pub struct RomFile { /* private fields */ }
Expand description
Represents a predefined, immutable ROM file. Useful for storing character, BASIC, kernal, etc. ROMs.
Implementations§
Trait Implementations§
source§impl BuildableSystem<RomFile, ()> for BasicSystem
impl BuildableSystem<RomFile, ()> for BasicSystem
source§impl BuildableSystem<RomFile, ()> for Easy6502System
impl BuildableSystem<RomFile, ()> for Easy6502System
A factory for the Easy6502 system.
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 RomFile
impl Send for RomFile
impl Sync for RomFile
impl Unpin for RomFile
impl UnwindSafe for RomFile
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