diff options
author | archshift <admin@archshift.com> | 2014-12-01 09:31:37 +0100 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-12-04 05:03:57 +0100 |
commit | a404ad527282e37fcd368d29c3b47abe0d3edba1 (patch) | |
tree | 4b8ec785d19e84866387c89066b1d59a21b94289 /src/core/mem_map.h | |
parent | Merge pull request #237 from vaguilar/fix-viewport (diff) | |
download | yuzu-a404ad527282e37fcd368d29c3b47abe0d3edba1.tar yuzu-a404ad527282e37fcd368d29c3b47abe0d3edba1.tar.gz yuzu-a404ad527282e37fcd368d29c3b47abe0d3edba1.tar.bz2 yuzu-a404ad527282e37fcd368d29c3b47abe0d3edba1.tar.lz yuzu-a404ad527282e37fcd368d29c3b47abe0d3edba1.tar.xz yuzu-a404ad527282e37fcd368d29c3b47abe0d3edba1.tar.zst yuzu-a404ad527282e37fcd368d29c3b47abe0d3edba1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/mem_map.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h index a58c59244..da440325f 100644 --- a/src/core/mem_map.h +++ b/src/core/mem_map.h @@ -19,7 +19,6 @@ typedef u32 PAddr; ///< Represents a pointer in the physical address space. enum { 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 AXI_WRAM_SIZE = 0x00080000, ///< AXI WRAM size FCRAM_SIZE = 0x08000000, ///< FCRAM size @@ -34,6 +33,9 @@ enum { SHARED_MEMORY_VADDR_END = (SHARED_MEMORY_VADDR + SHARED_MEMORY_SIZE), SHARED_MEMORY_MASK = (SHARED_MEMORY_SIZE - 1), + DSP_MEMORY_SIZE = 0x00080000, ///< DSP memory size + DSP_MEMORY_VADDR = 0x1FF00000, ///< DSP memory virtual address + CONFIG_MEMORY_SIZE = 0x00001000, ///< Configuration memory size CONFIG_MEMORY_VADDR = 0x1FF80000, ///< Configuration memory virtual address CONFIG_MEMORY_VADDR_END = (CONFIG_MEMORY_VADDR + CONFIG_MEMORY_SIZE), |