Struct libnoentiendo::systems::pet::PetSystemRoms
source · pub struct PetSystemRoms {
pub character: RomFile,
pub basic: RomFile,
pub editor: RomFile,
pub kernal: RomFile,
}
Expand description
The set of ROM files required to run a PET system.
Fields§
§character: RomFile
Character ROM. Used to generate the 8x8 character bitmaps.
basic: RomFile
Basic ROM. Contains the BASIC interpreter.
editor: RomFile
Editor ROM. Contains the screen editor functions.
kernal: RomFile
Kernal ROM. Contains the operating system.
Implementations§
source§impl PetSystemRoms
impl PetSystemRoms
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.
Auto Trait Implementations§
impl RefUnwindSafe for PetSystemRoms
impl Send for PetSystemRoms
impl Sync for PetSystemRoms
impl Unpin for PetSystemRoms
impl UnwindSafe for PetSystemRoms
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