mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 16:18:58 +00:00
Memmap: Make the constants aligned to 8 nibble characters
Otherwise, the constants can be a bit confusing to read.
This commit is contained in:
parent
6317721c95
commit
5a2340fead
1 changed files with 3 additions and 3 deletions
|
@ -48,11 +48,11 @@ enum
|
||||||
RAM_MASK = RAM_SIZE - 1,
|
RAM_MASK = RAM_SIZE - 1,
|
||||||
FAKEVMEM_SIZE = 0x02000000,
|
FAKEVMEM_SIZE = 0x02000000,
|
||||||
FAKEVMEM_MASK = FAKEVMEM_SIZE - 1,
|
FAKEVMEM_MASK = FAKEVMEM_SIZE - 1,
|
||||||
L1_CACHE_SIZE = 0x40000,
|
L1_CACHE_SIZE = 0x00040000,
|
||||||
L1_CACHE_MASK = L1_CACHE_SIZE - 1,
|
L1_CACHE_MASK = L1_CACHE_SIZE - 1,
|
||||||
EFB_SIZE = 0x200000,
|
EFB_SIZE = 0x00200000,
|
||||||
EFB_MASK = EFB_SIZE - 1,
|
EFB_MASK = EFB_SIZE - 1,
|
||||||
IO_SIZE = 0x10000,
|
IO_SIZE = 0x00010000,
|
||||||
EXRAM_SIZE = 0x04000000,
|
EXRAM_SIZE = 0x04000000,
|
||||||
EXRAM_MASK = EXRAM_SIZE - 1,
|
EXRAM_MASK = EXRAM_SIZE - 1,
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue