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

@@ -1,4 +1,4 @@
const HIGH_RAM_SIZE: usize = 127;
const HIGH_RAM_SIZE: usize = 0x7F;
const HIGH_RAM_START_ADDRESS: usize = 0xFF80;
#[derive(Debug, Clone)]