Memory: Make TLS only 0x200 bytes for each thread

Also move TLS to Base region
This commit is contained in:
PSI-Rockin 2024-05-09 20:35:28 -04:00
parent ba25ae7eba
commit 6c4c20fe3e
2 changed files with 6 additions and 6 deletions

View file

@ -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,