diff options
| author | 2019-04-07 03:04:53 -0400 | |
|---|---|---|
| committer | 2019-04-07 03:04:55 -0400 | |
| commit | 36a1e6a982e20c2c595b4a32d6bc2f5e6f969533 (patch) | |
| tree | 8f909d064b0a8b19f6b1e31082f02cdc8693741c /src/core | |
| parent | Merge pull request #2317 from FernandoS27/sync (diff) | |
| download | yuzu-36a1e6a982e20c2c595b4a32d6bc2f5e6f969533.tar.gz yuzu-36a1e6a982e20c2c595b4a32d6bc2f5e6f969533.tar.xz yuzu-36a1e6a982e20c2c595b4a32d6bc2f5e6f969533.zip | |
core/memory: Remove unused enum constants
These are holdovers from Citra and can be removed.
Diffstat (limited to 'src/core')
| -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 | ||