[][src]Struct ludus::cart::Cart

pub struct Cart {
    pub prg: Vec<u8>,
    pub chr: Vec<u8>,
    pub sram: [u8; 8192],
    pub mapper: MapperID,
    pub mirroring: Mirroring,
    pub has_battery: bool,
}

Represents an NES Cartridge The PRG and CHR roms vary in sizes between carts, which is why they're stored in Vecs.

Fields

prg: Vec<u8>

Represents the PRG ROM, in multiple 16KB chunks

chr: Vec<u8>

Represents the CHR ROM, in multiple 8KB chunks

sram: [u8; 8192]

The SRAM, always 8KB

mapper: MapperID

The ID of the Mapper this cart uses

mirroring: Mirroring

What type of mirroring is used in this cart

has_battery: bool

Indicates whether or not a battery backed RAM is present

Methods

impl Cart[src]

pub fn from_bytes(buffer: &[u8]) -> Result<Cart, CartReadingError>[src]

Reads a buffer of bytes into a Cart, detecting and parsing the format automatically.

Auto Trait Implementations

impl Send for Cart

impl Sync for Cart

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]