yane 1.1.11

An N.E.S. emulator and emulation library.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "sdl")]
mod run_app;

fn main() {
    #[cfg(feature = "sdl")]
    run_app::run();
    #[cfg(not(feature = "sdl"))]
    println!("The \"sdl\" feature is not enabled. It must be enabled to run yane as an app.")
}