2014-04-09 01:19:26 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 01:19:26 +02:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2014-04-09 02:15:08 +02:00
|
|
|
#include "common/common_types.h"
|
2014-08-30 05:24:32 +02:00
|
|
|
|
2014-05-17 17:59:18 +02:00
|
|
|
#include "core/core.h"
|
2014-10-25 21:54:44 +02:00
|
|
|
|
|
|
|
#include "core/settings.h"
|
2014-04-09 02:15:08 +02:00
|
|
|
#include "core/arm/disassembler/arm_disasm.h"
|
|
|
|
#include "core/arm/interpreter/arm_interpreter.h"
|
2014-10-25 21:54:44 +02:00
|
|
|
#include "core/arm/dyncom/arm_dyncom.h"
|
2014-06-05 06:26:48 +02:00
|
|
|
#include "core/hle/hle.h"
|
2014-05-23 04:54:07 +02:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2014-10-25 21:54:44 +02:00
|
|
|
#include "core/hw/hw.h"
|
2014-05-23 04:54:07 +02:00
|
|
|
|
2013-09-06 00:33:46 +02:00
|
|
|
namespace Core {
|
|
|
|
|
2014-11-18 14:48:11 +01:00
|
|
|
static u64 last_ticks = 0; ///< Last CPU ticks
|
|
|
|
static ARM_Disasm* disasm = nullptr; ///< ARM disassembler
|
|
|
|
ARM_Interface* g_app_core = nullptr; ///< ARM11 application core
|
|
|
|
ARM_Interface* g_sys_core = nullptr; ///< ARM11 system (OS) core
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2013-09-27 04:01:09 +02:00
|
|
|
/// Run the core CPU loop
|
2014-08-30 05:24:32 +02:00
|
|
|
void RunLoop(int tight_loop) {
|
|
|
|
g_app_core->Run(tight_loop);
|
|
|
|
HW::Update();
|
|
|
|
if (HLE::g_reschedule) {
|
|
|
|
Kernel::Reschedule();
|
2014-05-17 17:59:18 +02:00
|
|
|
}
|
2013-09-27 04:01:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Step the CPU one instruction
|
|
|
|
void SingleStep() {
|
2014-08-30 05:24:32 +02:00
|
|
|
RunLoop(1);
|
2013-09-06 00:33:46 +02:00
|
|
|
}
|
|
|
|
|
2013-09-27 04:01:09 +02:00
|
|
|
/// Halt the core
|
2013-10-02 01:07:33 +02:00
|
|
|
void Halt(const char *msg) {
|
2014-04-01 04:26:50 +02:00
|
|
|
// TODO(ShizZy): ImplementMe
|
2013-09-27 04:01:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Kill the core
|
2013-09-06 00:33:46 +02:00
|
|
|
void Stop() {
|
2014-04-01 04:26:50 +02:00
|
|
|
// TODO(ShizZy): ImplementMe
|
2013-09-06 00:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Initialize the core
|
2013-10-03 23:47:31 +02:00
|
|
|
int Init() {
|
2014-12-06 02:53:49 +01:00
|
|
|
LOG_DEBUG(Core, "initialized OK");
|
2014-04-01 04:26:50 +02:00
|
|
|
|
2014-11-18 14:48:11 +01:00
|
|
|
disasm = new ARM_Disasm();
|
2014-04-05 04:26:06 +02:00
|
|
|
g_sys_core = new ARM_Interpreter();
|
2014-04-01 04:26:50 +02:00
|
|
|
|
2014-10-25 21:54:44 +02:00
|
|
|
switch (Settings::values.cpu_core) {
|
2015-01-03 04:33:53 +01:00
|
|
|
case CPU_Interpreter:
|
2014-10-25 21:54:44 +02:00
|
|
|
g_app_core = new ARM_DynCom();
|
|
|
|
break;
|
2015-01-03 04:33:53 +01:00
|
|
|
case CPU_OldInterpreter:
|
2014-10-25 21:54:44 +02:00
|
|
|
default:
|
|
|
|
g_app_core = new ARM_Interpreter();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-11-18 14:48:11 +01:00
|
|
|
last_ticks = Core::g_app_core->GetTicks();
|
2014-06-06 06:06:33 +02:00
|
|
|
|
2014-04-01 04:26:50 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2014-11-18 14:48:11 +01:00
|
|
|
delete disasm;
|
2014-04-05 04:26:06 +02:00
|
|
|
delete g_app_core;
|
|
|
|
delete g_sys_core;
|
2014-04-05 21:26:03 +02:00
|
|
|
|
2014-12-06 02:53:49 +01:00
|
|
|
LOG_DEBUG(Core, "shutdown OK");
|
2013-09-06 00:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|