2021-07-28 02:01:04 -05:00
|
|
|
pub use apu::gen::AudioSPSC;
|
2021-07-31 20:29:13 -05:00
|
|
|
pub use instruction::cycle::Cycle;
|
2021-06-02 01:50:16 -05:00
|
|
|
|
2021-03-20 20:22:31 -05:00
|
|
|
pub const GB_WIDTH: usize = 160;
|
|
|
|
pub const GB_HEIGHT: usize = 144;
|
|
|
|
|
2021-07-14 23:45:01 -05:00
|
|
|
mod apu;
|
2020-08-29 18:38:27 -05:00
|
|
|
mod bus;
|
2020-12-23 19:39:37 -06:00
|
|
|
mod cartridge;
|
2021-03-20 20:22:31 -05:00
|
|
|
mod cpu;
|
2021-06-27 20:28:29 -05:00
|
|
|
pub mod emu;
|
2021-01-17 21:13:59 -06:00
|
|
|
mod high_ram;
|
2020-12-23 03:25:16 -06:00
|
|
|
mod instruction;
|
2021-01-03 01:38:31 -06:00
|
|
|
mod interrupt;
|
2021-03-20 21:11:45 -05:00
|
|
|
mod joypad;
|
2020-12-23 21:24:27 -06:00
|
|
|
mod ppu;
|
2021-01-19 01:36:44 -06:00
|
|
|
mod serial;
|
2021-01-03 01:21:19 -06:00
|
|
|
mod timer;
|
2021-01-03 00:28:07 -06:00
|
|
|
mod work_ram;
|