2021-03-20 20:22:31 -05:00
|
|
|
pub use cpu::Cpu as LR35902;
|
2021-03-27 12:10:18 -05:00
|
|
|
pub use instruction::Cycle;
|
2021-05-03 23:11:39 -05:00
|
|
|
pub use joypad::ButtonState;
|
2021-03-20 19:56:26 -05:00
|
|
|
|
2021-03-20 20:22:31 -05:00
|
|
|
pub const GB_WIDTH: usize = 160;
|
|
|
|
pub const GB_HEIGHT: usize = 144;
|
2021-04-08 20:32:32 -05:00
|
|
|
pub const LR35902_CLOCK_SPEED: u32 = 0x400000; // Hz | 4.194304Mhz
|
2021-03-20 20:22:31 -05:00
|
|
|
|
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-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 02:05:46 -06:00
|
|
|
mod sound;
|
2021-01-03 01:21:19 -06:00
|
|
|
mod timer;
|
2021-01-03 00:28:07 -06:00
|
|
|
mod work_ram;
|