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
pub mod apu;
pub mod boot_rom;
pub mod bus;
pub mod cartridge;
pub mod console;
pub mod cpu;
pub mod input;
pub mod ppu;
pub mod timer;

pub use console::gameboy::GameBoy;

#[cfg(test)]
pub mod integration_tests;