Struct libnoentiendo::systems::c64::C64SystemRoms
source · pub struct C64SystemRoms {
pub character: RomFile,
pub basic: RomFile,
pub kernal: RomFile,
}
Expand description
The set of ROM files required to run a Commodore 64 system.
Fields§
§character: RomFile
Character ROM. Used to generate the 8x8 character bitmaps.
basic: RomFile
Basic ROM. Contains the BASIC interpreter.
kernal: RomFile
Kernel ROM. Contains the operating system.
Implementations§
source§impl C64SystemRoms
impl C64SystemRoms
Trait Implementations§
source§impl BuildableSystem<C64SystemRoms, C64SystemConfig> for C64System
impl BuildableSystem<C64SystemRoms, C64SystemConfig> for C64System
source§fn build(
roms: C64SystemRoms,
config: C64SystemConfig,
platform: Arc<dyn PlatformProvider>
) -> Box<dyn System>
fn build( roms: C64SystemRoms, config: C64SystemConfig, 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 C64SystemRoms
impl Send for C64SystemRoms
impl Sync for C64SystemRoms
impl Unpin for C64SystemRoms
impl UnwindSafe for C64SystemRoms
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