diff options
| author | 2019-04-07 17:46:09 -0400 | |
|---|---|---|
| committer | 2019-04-07 17:46:09 -0400 | |
| commit | d9b1c24f4fd40766be01119d9656cff8a0e48591 (patch) | |
| tree | 4884082dea6daaa125335a2d35c611053d3dd157 | |
| parent | Merge pull request #2352 from bunnei/mem-manager-fixes (diff) | |
| parent | core/memory: Remove unused enum constants (diff) | |
| download | yuzu-d9b1c24f4fd40766be01119d9656cff8a0e48591.tar.gz yuzu-d9b1c24f4fd40766be01119d9656cff8a0e48591.tar.xz yuzu-d9b1c24f4fd40766be01119d9656cff8a0e48591.zip | |
Merge pull request #2362 from lioncash/enum
core/memory: Remove unused enum constants
| -rw-r--r-- | src/core/memory.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/memory.h b/src/core/memory.h index 1d38cdca8..9153e4954 100644 --- a/src/core/memory.h +++ b/src/core/memory.h | |||
| @@ -28,16 +28,6 @@ constexpr u64 PAGE_MASK = PAGE_SIZE - 1; | |||
| 28 | 28 | ||
| 29 | /// Virtual user-space memory regions | 29 | /// Virtual user-space memory regions |
| 30 | enum : VAddr { | 30 | enum : VAddr { |
| 31 | /// Read-only page containing kernel and system configuration values. | ||
| 32 | CONFIG_MEMORY_VADDR = 0x1FF80000, | ||
| 33 | CONFIG_MEMORY_SIZE = 0x00001000, | ||
| 34 | CONFIG_MEMORY_VADDR_END = CONFIG_MEMORY_VADDR + CONFIG_MEMORY_SIZE, | ||
| 35 | |||
| 36 | /// Usually read-only page containing mostly values read from hardware. | ||
| 37 | SHARED_PAGE_VADDR = 0x1FF81000, | ||
| 38 | SHARED_PAGE_SIZE = 0x00001000, | ||
| 39 | SHARED_PAGE_VADDR_END = SHARED_PAGE_VADDR + SHARED_PAGE_SIZE, | ||
| 40 | |||
| 41 | /// TLS (Thread-Local Storage) related. | 31 | /// TLS (Thread-Local Storage) related. |
| 42 | TLS_ENTRY_SIZE = 0x200, | 32 | TLS_ENTRY_SIZE = 0x200, |
| 43 | 33 | ||