gb/src/lib.rs

22 lines
312 B
Rust
Raw Normal View History

pub use gui::Egui;
2021-03-27 17:10:18 +00:00
pub use instruction::Cycle;
2021-07-12 15:03:45 +00:00
pub use sound::AudioMPSC;
pub const GB_WIDTH: usize = 160;
pub const GB_HEIGHT: usize = 144;
mod bus;
mod cartridge;
mod cpu;
pub mod emu;
mod gui;
2021-01-18 03:13:59 +00:00
mod high_ram;
mod instruction;
mod interrupt;
2021-03-21 02:11:45 +00:00
mod joypad;
mod ppu;
2021-01-19 07:36:44 +00:00
mod serial;
2021-01-03 08:05:46 +00:00
mod sound;
mod timer;
2021-01-03 06:28:07 +00:00
mod work_ram;