mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
mem_map: Make enum for addresses use u32 as the underlying type
This commit is contained in:
parent
d5be332d21
commit
3ba32d2b53
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
DSP_SIZE = 0x00080000, ///< DSP memory size
|
||||
|
|
Loading…
Reference in a new issue