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
11
//! GBA console wrapper and configuration.
//!
//! Provides the platform-facing [`Gba`] struct that implements the [`Emulator`]
//! trait, allowing the GBA to be driven through the common [`Console`] interface.
//!
//! [`Emulator`]: crate::platform::emulator::Emulator
//! [`Console`]: crate::platform::emulator::Console

pub mod config;
pub mod gba;
pub mod save_state;