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
#[allow(unused_imports)]
pub use bus::{GbBus, StubBus};
pub use cgb_bus::CgbBus;
pub use dmg_bus::DmgBus;

#[allow(clippy::module_inception)]
mod bus;
mod cgb_bus;
mod dmg_bus;
pub mod hdma;