neser 1.2.0

NESER - Nintendo Emulation Systems Engine (Rust). Desktop and WebAssembly frontends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod background;
mod bg_fifo;
mod obj_fifo;
mod pixel_fifo;
#[allow(clippy::module_inception)]
mod ppu;
pub mod registers;
pub mod rendering;
pub mod screen_buffer;
pub mod sprites;
pub mod timing;
#[cfg(test)]
mod trace_tests;
pub mod window;

pub use ppu::Ppu;
pub(crate) use ppu::StopDisplayMode;