diff options
| author | 2014-10-27 22:51:10 -0400 | |
|---|---|---|
| committer | 2014-10-27 22:51:10 -0400 | |
| commit | 48f80bb79efc3b27f8ff965c43aafeffff99e0e1 (patch) | |
| tree | 3d08f714f3392ba6aadb0641bac420d8f24c29dc /src/core/core.h | |
| parent | Merge pull request #141 from archshift/crash-hunt (diff) | |
| parent | Added `gpu_refresh_rate` config setting for the new interpreter speed hack. (diff) | |
| download | yuzu-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.h | 5 |
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 | ||
| 12 | namespace Core { | 12 | namespace Core { |
| 13 | 13 | ||
| 14 | enum CPUCore { | ||
| 15 | CPU_Interpreter, | ||
| 16 | CPU_FastInterpreter | ||
| 17 | }; | ||
| 18 | |||
| 14 | extern ARM_Interface* g_app_core; ///< ARM11 application core | 19 | extern ARM_Interface* g_app_core; ///< ARM11 application core |
| 15 | extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core | 20 | extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core |
| 16 | 21 | ||