summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-12-04 06:01:13 +0100
committerbunnei <bunneidev@gmail.com>2014-12-04 06:01:13 +0100
commit846dc72a37bb3651b8c40c9d474c381298aff902 (patch)
treea5c74e1f659b0e9863cc17f75fae78624697ac09 /src/core
parentMerge pull request #247 from lioncash/const (diff)
parentmem_map: Make enum for addresses use u32 as the underlying type (diff)
downloadyuzu-846dc72a37bb3651b8c40c9d474c381298aff902.tar
yuzu-846dc72a37bb3651b8c40c9d474c381298aff902.tar.gz
yuzu-846dc72a37bb3651b8c40c9d474c381298aff902.tar.bz2
yuzu-846dc72a37bb3651b8c40c9d474c381298aff902.tar.lz
yuzu-846dc72a37bb3651b8c40c9d474c381298aff902.tar.xz
yuzu-846dc72a37bb3651b8c40c9d474c381298aff902.tar.zst
yuzu-846dc72a37bb3651b8c40c9d474c381298aff902.zip
Diffstat (limited to 'src/core')
-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.
////////////////////////////////////////////////////////////////////////////////////////////////////
-enum {
+enum : u32 {
BOOTROM_SIZE = 0x00010000, ///< Bootrom (super secret code/data @ 0x8000) size
MPCORE_PRIV_SIZE = 0x00002000, ///< MPCore private memory region size
AXI_WRAM_SIZE = 0x00080000, ///< AXI WRAM size