mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-19 12:10:59 +12:00
Memory: Make TLS only 0x200 bytes for each thread
Also move TLS to Base region
This commit is contained in:
parent
ba25ae7eba
commit
6c4c20fe3e
2 changed files with 6 additions and 6 deletions
|
@ -47,9 +47,9 @@ namespace VirtualAddrs {
|
|||
LinearHeapStartNew = 0x30000000,
|
||||
LinearHeapEndNew = 0x40000000,
|
||||
|
||||
// Start of TLS for first thread. Next thread's storage will be at TLSBase + 0x1000, and so on
|
||||
// Start of TLS for first thread. Next thread's storage will be at TLSBase + 0x200, and so on
|
||||
TLSBase = 0x1FF82000,
|
||||
TLSSize = 0x1000,
|
||||
TLSSize = 0x200,
|
||||
|
||||
VramStart = 0x1F000000,
|
||||
VramSize = 0x00600000,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue