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
#[derive(Copy, Clone, Debug)]
pub struct CPUInfo {
    pub af: u16,
    pub bc: u16,
    pub de: u16,
    pub hl: u16,
    pub sp: u16,
    pub pc: u16,
    pub stopped: bool,
    pub enabled: bool,
}