neser 1.1.0

NESER - Nintendo Emulation Systems Engine (Rust). Desktop and WebAssembly frontends.
Documentation
pub mod apu;
pub mod autorun;
pub mod boot_rom;
pub mod bus;
pub mod cartridge;
pub mod compat_palettes;
pub mod console;
pub mod cpu;
pub mod debugging;
pub mod input;
pub mod model;
pub mod ppu;
pub mod sgb;
pub mod timer;

pub use console::gameboy::GameBoy;
// Re-export DmgModel and CgbModel so downstream library consumers can use `neser::gb::DmgModel` and `neser::gb::CgbModel`.
#[allow(unused_imports)]
pub use model::{CgbModel, DmgModel};

#[cfg(test)]
pub mod integration_tests;