[][src]Struct gboxide::gameboy::lcd::LCD

pub struct LCD {
    pub vram_tile_data: [u8; 6144],
    pub vram_bg_maps: [u8; 2048],
    pub vram_oam: [OAM; 40],
    // some fields omitted
}

Fields

vram_tile_data: [u8; 6144]vram_bg_maps: [u8; 2048]vram_oam: [OAM; 40]

Methods

impl LCD[src]

pub fn new() -> LCD[src]

pub fn read_register(&self, addr: u16) -> u8[src]

pub fn write_register(&mut self, addr: u16, value: u8)[src]

pub fn read_oam(&self, addr: u16) -> u8[src]

pub fn write_oam(&mut self, addr: u16, value: u8)[src]

pub fn step(&mut self, ih: &mut InterruptHandler)[src]

pub fn vblank_reached(&mut self) -> bool[src]

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

Auto Trait Implementations

impl Send for LCD

impl Sync for LCD

impl Unpin for LCD

impl UnwindSafe for LCD

impl RefUnwindSafe for LCD

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> 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]