summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar bunnei2014-10-27 22:51:10 -0400
committerGravatar bunnei2014-10-27 22:51:10 -0400
commit48f80bb79efc3b27f8ff965c43aafeffff99e0e1 (patch)
tree3d08f714f3392ba6aadb0641bac420d8f24c29dc /src/core/core.h
parentMerge pull request #141 from archshift/crash-hunt (diff)
parentAdded `gpu_refresh_rate` config setting for the new interpreter speed hack. (diff)
downloadyuzu-48f80bb79efc3b27f8ff965c43aafeffff99e0e1.tar.gz
yuzu-48f80bb79efc3b27f8ff965c43aafeffff99e0e1.tar.xz
yuzu-48f80bb79efc3b27f8ff965c43aafeffff99e0e1.zip
Merge pull request #151 from archshift/dyncom-enabled
Use configuration files to enable or disable the new dyncom interpreter.
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 87da252b8..872dc0cd1 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -11,6 +11,11 @@
11 11
12namespace Core { 12namespace Core {
13 13
14enum CPUCore {
15 CPU_Interpreter,
16 CPU_FastInterpreter
17};
18
14extern ARM_Interface* g_app_core; ///< ARM11 application core 19extern ARM_Interface* g_app_core; ///< ARM11 application core
15extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core 20extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core
16 21