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
16
17
// Internal library for testing purposes only
// This is not published or exposed externally

pub mod gb;
pub mod nes;
pub mod platform;

#[cfg(feature = "wasm")]
#[path = "frontends/web/wasm.rs"]
pub mod wasm;
#[path = "frontends/web/wasm_autorun_state.rs"]
pub mod wasm_autorun;
#[cfg(all(test, feature = "wasm", target_arch = "wasm32"))]
#[path = "frontends/web/wasm_tests.rs"]
mod wasm_tests;

pub mod frontends;