rustboy-core 0.2.0

Core library of the Rustboy Gameboy Color emulator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate alloc;
extern crate serde;
extern crate core;

pub mod emulator;
pub mod cartridge_info;
pub mod audio;
pub mod renderer;
pub mod input;
pub mod cpu;
pub mod memory;
mod internal;