neser 1.2.0

NESER - Nintendo Emulation Systems Engine (Rust). Desktop and WebAssembly frontends.
Documentation
mod background;
mod color_effects;
mod memory;
#[allow(clippy::module_inception)]
mod ppu;
mod registers;
mod rendering;
#[cfg(test)]
mod rendering_alignment_tests;
mod screen_buffer;
mod sprites;
mod status;
pub(crate) mod system_palettes;
#[cfg(test)]
mod test_utils;
mod timing;
pub(crate) mod vs_palettes;

pub use background::Background;
pub use memory::Memory;
pub use ppu::Ppu;
pub use ppu::PpuState;
pub use ppu::SharedPpu;
pub use registers::Registers;
pub use rendering::Rendering;
pub use screen_buffer::ScreenBuffer;
pub use sprites::Sprites;
pub use status::Status;
pub use system_palettes::NesPalette;
pub use timing::Timing;