Memmap: Make the constants aligned to 8 nibble characters

Otherwise, the constants can be a bit confusing to read.
This commit is contained in:
Jasper St. Pierre 2014-10-28 03:17:12 -07:00
parent 6317721c95
commit 5a2340fead
1 changed files with 3 additions and 3 deletions

View File

@ -48,11 +48,11 @@ enum
RAM_MASK = RAM_SIZE - 1,
FAKEVMEM_SIZE = 0x02000000,
FAKEVMEM_MASK = FAKEVMEM_SIZE - 1,
L1_CACHE_SIZE = 0x40000,
L1_CACHE_SIZE = 0x00040000,
L1_CACHE_MASK = L1_CACHE_SIZE - 1,
EFB_SIZE = 0x200000,
EFB_SIZE = 0x00200000,
EFB_MASK = EFB_SIZE - 1,
IO_SIZE = 0x10000,
IO_SIZE = 0x00010000,
EXRAM_SIZE = 0x04000000,
EXRAM_MASK = EXRAM_SIZE - 1,