neser 0.3.1

NESER - NES Emulator in Rust. Desktop (SDL) and WebAssembly frontends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod apu_device;
#[allow(clippy::module_inception)]
mod bus;
pub mod controller_device;
pub mod mapper_device;
pub mod oam_dma_device;
pub mod ppu_device;
pub mod ram_device;

pub use bus::Bus;
#[cfg(test)]
pub(crate) use bus::BusDevice;
pub use bus::SharedBus;
#[allow(unused_imports)] // Used by frontend features
pub use bus::{BusState, ControllerStateWrapper, MapperState};