diff options
| author | 2018-01-16 18:27:48 -0500 | |
|---|---|---|
| committer | 2018-01-16 18:27:48 -0500 | |
| commit | 1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d (patch) | |
| tree | 160c4a53715012ad8cb16c0738240d9530af4739 /src/core/memory.h | |
| parent | Merge pull request #45 from FearlessTobi/patch-1 (diff) | |
| parent | Update memory.h (diff) | |
| download | yuzu-1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d.tar.gz yuzu-1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d.tar.xz yuzu-1aa4cdc3c8326e5db875c8a26afe14d6fbffdc3d.zip | |
Merge pull request #52 from ogniK5377/fsp
added more svcGetInfo pairs for 3.0.0+ support, Changed HEAP_SIZE and TLS_AREA_VADDR. changed mem usage & heap usage stub added, ISelfController, IApplication function stubs. Added SetThreadCoreMask
Diffstat (limited to 'src/core/memory.h')
| -rw-r--r-- | src/core/memory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/memory.h b/src/core/memory.h index 91bd4d889..7e554f394 100644 --- a/src/core/memory.h +++ b/src/core/memory.h | |||
| @@ -136,7 +136,7 @@ enum : VAddr { | |||
| 136 | 136 | ||
| 137 | /// Application heap (includes stack). | 137 | /// Application heap (includes stack). |
| 138 | HEAP_VADDR = 0x108000000, | 138 | HEAP_VADDR = 0x108000000, |
| 139 | HEAP_SIZE = 0x18000000, | 139 | HEAP_SIZE = 0xF0000000, |
| 140 | HEAP_VADDR_END = HEAP_VADDR + HEAP_SIZE, | 140 | HEAP_VADDR_END = HEAP_VADDR + HEAP_SIZE, |
| 141 | 141 | ||
| 142 | /// Area where shared memory buffers are mapped onto. | 142 | /// Area where shared memory buffers are mapped onto. |
| @@ -177,7 +177,7 @@ enum : VAddr { | |||
| 177 | SHARED_PAGE_VADDR_END = SHARED_PAGE_VADDR + SHARED_PAGE_SIZE, | 177 | SHARED_PAGE_VADDR_END = SHARED_PAGE_VADDR + SHARED_PAGE_SIZE, |
| 178 | 178 | ||
| 179 | /// Area where TLS (Thread-Local Storage) buffers are allocated. | 179 | /// Area where TLS (Thread-Local Storage) buffers are allocated. |
| 180 | TLS_AREA_VADDR = 0x1FF82000, | 180 | TLS_AREA_VADDR = 0x228000000, |
| 181 | TLS_ENTRY_SIZE = 0x200, | 181 | TLS_ENTRY_SIZE = 0x200, |
| 182 | 182 | ||
| 183 | /// Equivalent to LINEAR_HEAP_VADDR, but expanded to cover the extra memory in the New 3DS. | 183 | /// Equivalent to LINEAR_HEAP_VADDR, but expanded to cover the extra memory in the New 3DS. |