chore: convert select base 10 constants to base 16

This commit is contained in:
2021-04-08 20:32:32 -05:00
parent 770b081f98
commit 7425384fb1
5 changed files with 4 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ pub use instruction::Cycle;
pub const GB_WIDTH: usize = 160;
pub const GB_HEIGHT: usize = 144;
pub const LR35902_CLOCK_SPEED: u32 = 4194304; // Hz | 4.194304Mhz
pub const LR35902_CLOCK_SPEED: u32 = 0x400000; // Hz | 4.194304Mhz
mod bus;
mod cartridge;