diff options
| author | 2014-12-03 23:34:22 -0500 | |
|---|---|---|
| committer | 2014-12-03 23:36:45 -0500 | |
| commit | 3ba32d2b53683c8259c3583ce7c63c077f6c0da1 (patch) | |
| tree | 274821d3046423871f6c5b400d425f2d20105832 | |
| parent | Merge pull request #237 from vaguilar/fix-viewport (diff) | |
| download | yuzu-3ba32d2b53683c8259c3583ce7c63c077f6c0da1.tar.gz yuzu-3ba32d2b53683c8259c3583ce7c63c077f6c0da1.tar.xz yuzu-3ba32d2b53683c8259c3583ce7c63c077f6c0da1.zip | |
mem_map: Make enum for addresses use u32 as the underlying type
Diffstat (limited to '')
| -rw-r--r-- | src/core/mem_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h index a58c59244..637cde311 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 | ||
| 19 | enum { | 19 | enum : 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 | DSP_SIZE = 0x00080000, ///< DSP memory size | 22 | DSP_SIZE = 0x00080000, ///< DSP memory size |