2014-04-09 00:19:26 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 23:33:46 +01:00
|
|
|
|
2014-04-09 01:15:08 +01:00
|
|
|
#include "common/common_types.h"
|
2014-08-30 04:24:32 +01:00
|
|
|
|
2014-05-17 16:59:18 +01:00
|
|
|
#include "core/core.h"
|
2014-04-09 01:15:08 +01:00
|
|
|
#include "core/hw/hw.h"
|
|
|
|
#include "core/arm/disassembler/arm_disasm.h"
|
|
|
|
#include "core/arm/interpreter/arm_interpreter.h"
|
2013-09-05 23:33:46 +01:00
|
|
|
|
2014-06-05 05:26:48 +01:00
|
|
|
#include "core/hle/hle.h"
|
2014-05-23 03:54:07 +01:00
|
|
|
#include "core/hle/kernel/thread.h"
|
|
|
|
|
2013-09-05 23:33:46 +01:00
|
|
|
namespace Core {
|
|
|
|
|
2014-06-06 05:35:49 +01:00
|
|
|
u64 g_last_ticks = 0; ///< Last CPU ticks
|
|
|
|
ARM_Disasm* g_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-05 23:33:46 +01:00
|
|
|
|
2013-09-27 03:01:09 +01:00
|
|
|
/// Run the core CPU loop
|
2014-08-30 04:24:32 +01:00
|
|
|
void RunLoop(int tight_loop) {
|
|
|
|
g_app_core->Run(tight_loop);
|
|
|
|
HW::Update();
|
|
|
|
if (HLE::g_reschedule) {
|
|
|
|
Kernel::Reschedule();
|
2014-05-17 16:59:18 +01:00
|
|
|
}
|
2013-09-27 03:01:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Step the CPU one instruction
|
|
|
|
void SingleStep() {
|
2014-08-30 04:24:32 +01:00
|
|
|
RunLoop(1);
|
2013-09-05 23:33:46 +01:00
|
|
|
}
|
|
|
|
|
2013-09-27 03:01:09 +01:00
|
|
|
/// Halt the core
|
2013-10-02 00:07:33 +01:00
|
|
|
void Halt(const char *msg) {
|
2014-04-01 03:26:50 +01:00
|
|
|
// TODO(ShizZy): ImplementMe
|
2013-09-27 03:01:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Kill the core
|
2013-09-05 23:33:46 +01:00
|
|
|
void Stop() {
|
2014-04-01 03:26:50 +01:00
|
|
|
// TODO(ShizZy): ImplementMe
|
2013-09-05 23:33:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Initialize the core
|
2013-10-03 22:47:31 +01:00
|
|
|
int Init() {
|
2014-04-11 03:45:40 +01:00
|
|
|
NOTICE_LOG(MASTER_LOG, "initialized OK");
|
2014-04-01 03:26:50 +01:00
|
|
|
|
2014-04-05 03:26:06 +01:00
|
|
|
g_disasm = new ARM_Disasm();
|
|
|
|
g_app_core = new ARM_Interpreter();
|
|
|
|
g_sys_core = new ARM_Interpreter();
|
2014-04-01 03:26:50 +01:00
|
|
|
|
2014-06-06 05:06:33 +01:00
|
|
|
g_last_ticks = Core::g_app_core->GetTicks();
|
|
|
|
|
2014-04-01 03:26:50 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2014-04-05 03:26:06 +01:00
|
|
|
delete g_disasm;
|
|
|
|
delete g_app_core;
|
|
|
|
delete g_sys_core;
|
2014-04-05 20:26:03 +01:00
|
|
|
|
2014-04-11 03:45:40 +01:00
|
|
|
NOTICE_LOG(MASTER_LOG, "shutdown OK");
|
2013-09-05 23:33:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|