gboxide 0.2.2

A GameBoy Emulator written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[macro_use]
extern crate bitfield;
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate num_derive;

pub mod cartridge;
pub mod gameboy;
pub mod gui;
mod utils;