diff options
author | bunnei <bunneidev@gmail.com> | 2014-10-27 22:51:10 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-10-27 22:51:10 -0400 |
commit | 48f80bb79efc3b27f8ff965c43aafeffff99e0e1 (patch) | |
tree | 3d08f714f3392ba6aadb0641bac420d8f24c29dc /src/core/core.h | |
parent | a110b06fb6cca7c60af1707173686d72430c71fb (diff) | |
parent | 09e19f9f1ee2e965a581e70b30cbc357f4b5ad21 (diff) |
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 @@ namespace Core { +enum CPUCore { + CPU_Interpreter, + CPU_FastInterpreter +}; + extern ARM_Interface* g_app_core; ///< ARM11 application core extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core |