summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2014-12-04 00:01:13 -0500
committerGravatar bunnei2014-12-04 00:01:13 -0500
commit846dc72a37bb3651b8c40c9d474c381298aff902 (patch)
treea5c74e1f659b0e9863cc17f75fae78624697ac09
parentMerge pull request #247 from lioncash/const (diff)
parentmem_map: Make enum for addresses use u32 as the underlying type (diff)
downloadyuzu-846dc72a37bb3651b8c40c9d474c381298aff902.tar.gz
yuzu-846dc72a37bb3651b8c40c9d474c381298aff902.tar.xz
yuzu-846dc72a37bb3651b8c40c9d474c381298aff902.zip
Merge pull request #249 from lioncash/enum
mem_map: Make enum for addresses use u32 as the underlying type
Diffstat (limited to '')
-rw-r--r--src/core/mem_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h
index da440325f..c9529f84c 100644
--- a/src/core/mem_map.h
+++ b/src/core/mem_map.h
@@ -16,7 +16,7 @@ typedef u32 PAddr; ///< Represents a pointer in the physical address space.
16 16
17//////////////////////////////////////////////////////////////////////////////////////////////////// 17////////////////////////////////////////////////////////////////////////////////////////////////////
18 18
19enum { 19enum : u32 {
20 BOOTROM_SIZE = 0x00010000, ///< Bootrom (super secret code/data @ 0x8000) size 20 BOOTROM_SIZE = 0x00010000, ///< Bootrom (super secret code/data @ 0x8000) size
21 MPCORE_PRIV_SIZE = 0x00002000, ///< MPCore private memory region size 21 MPCORE_PRIV_SIZE = 0x00002000, ///< MPCore private memory region size
22 AXI_WRAM_SIZE = 0x00080000, ///< AXI WRAM size 22 AXI_WRAM_SIZE = 0x00080000, ///< AXI WRAM size