summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2015-05-10 20:50:23 -0400
committerGravatar Lioncash2015-05-10 20:50:23 -0400
commit2a19de1d09f725e8ef267a51d4c5ff994b036b04 (patch)
tree945fc0617a3329e14f0b4ec3cf2679a0054cbb7b /src/core/core.cpp
parentMerge pull request #726 from bunnei/gpu-improvements (diff)
parentfixup! Set the TLS address in the scheduler (diff)
downloadyuzu-2a19de1d09f725e8ef267a51d4c5ff994b036b04.tar.gz
yuzu-2a19de1d09f725e8ef267a51d4c5ff994b036b04.tar.xz
yuzu-2a19de1d09f725e8ef267a51d4c5ff994b036b04.zip
Merge pull request #741 from Subv/tls
Give each emulated thread it's own TLS memory
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index bb2ed7a92..b5c258230 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -61,10 +61,6 @@ int Init() {
61 g_sys_core = new ARM_DynCom(USER32MODE); 61 g_sys_core = new ARM_DynCom(USER32MODE);
62 g_app_core = new ARM_DynCom(USER32MODE); 62 g_app_core = new ARM_DynCom(USER32MODE);
63 63
64 // TODO: Whenever TLS is implemented, this should contain
65 // the address of the 0x200-byte TLS
66 g_app_core->SetCP15Register(CP15_THREAD_URO, Memory::TLS_AREA_VADDR);
67
68 LOG_DEBUG(Core, "Initialized OK"); 64 LOG_DEBUG(Core, "Initialized OK");
69 return 0; 65 return 0;
70} 66}