gameboy 0.1.5

Gameboy emulator written in Rust and WebAssembly
Documentation
1
2
3
4
5
6
7
8
#[cfg(target_arch = "wasm32")]
pub mod web;

#[cfg(not(target_arch = "wasm32"))]
pub mod desktop;

#[cfg(not(target_arch = "wasm32"))]
pub mod tui;