[][src]Struct lochnes::nes::ppu::Ppu

pub struct Ppu {
    pub ctrl: Cell<PpuCtrlFlags>,
    pub mask: Cell<PpuMaskFlags>,
    pub status: Cell<PpuStatusFlags>,
    pub oam_addr: Cell<u8>,
    pub scroll: Cell<u16>,
    pub addr: Cell<u16>,
    pub scroll_addr_latch: Cell<bool>,
    pub ppu_ram: Cell<[u8; 2048]>,
    pub oam: Cell<[u8; 256]>,
    pub palette_ram: Cell<[u8; 32]>,
    // some fields omitted
}

Fields

ctrl: Cell<PpuCtrlFlags>mask: Cell<PpuMaskFlags>status: Cell<PpuStatusFlags>oam_addr: Cell<u8>scroll: Cell<u16>addr: Cell<u16>scroll_addr_latch: Cell<bool>ppu_ram: Cell<[u8; 2048]>oam: Cell<[u8; 256]>palette_ram: Cell<[u8; 32]>

Methods

impl Ppu[src]

pub fn new() -> Self[src]

pub fn ppu_ram(&self) -> &[Cell<u8>][src]

pub fn palette_ram(&self) -> &[Cell<u8>][src]

pub fn set_ppuctrl(&self, value: u8)[src]

pub fn set_ppumask(&self, value: u8)[src]

pub fn write_oamaddr(&self, value: u8)[src]

pub fn write_oamdata(&self, value: u8)[src]

pub fn write_ppuscroll(&self, value: u8)[src]

pub fn write_ppuaddr(&self, value: u8)[src]

pub fn read_ppudata(&self, nes: &Nes<impl NesIo>) -> u8[src]

pub fn write_ppudata(&self, nes: &Nes<impl NesIo>, value: u8)[src]

pub fn ppustatus(&self) -> u8[src]

pub fn run<'a>(
    nes: &'a Nes<impl NesIo>
) -> impl Generator<Yield = PpuStep, Return = !> + 'a
[src]

Trait Implementations

impl Clone for Ppu[src]

Auto Trait Implementations

impl Send for Ppu

impl !Sync for Ppu

impl Unpin for Ppu

impl UnwindSafe for Ppu

impl !RefUnwindSafe for Ppu

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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