gameboy 0.1.5

Gameboy emulator written in Rust and WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(PartialEq, Debug, Copy, Clone)]
pub enum GbMode {
    Classic,
    Color,
    ColorAsClassic,
}

#[derive(PartialEq, Copy, Clone)]
pub enum GbSpeed {
    Single,
    Double,
}