22 lines
312 B
Rust
22 lines
312 B
Rust
pub use gui::Egui;
|
|
pub use instruction::Cycle;
|
|
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;
|
|
mod high_ram;
|
|
mod instruction;
|
|
mod interrupt;
|
|
mod joypad;
|
|
mod ppu;
|
|
mod serial;
|
|
mod sound;
|
|
mod timer;
|
|
mod work_ram;
|