2014-04-09 04:49:26 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-06 04:03:46 +05:30
|
|
|
|
2014-04-09 05:45:08 +05:30
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/log.h"
|
2014-05-17 21:29:18 +05:30
|
|
|
#include "common/symbols.h"
|
2014-04-09 05:45:08 +05:30
|
|
|
|
2014-05-17 21:29:18 +05:30
|
|
|
#include "core/core.h"
|
2014-04-09 05:45:08 +05:30
|
|
|
#include "core/mem_map.h"
|
|
|
|
#include "core/hw/hw.h"
|
2014-05-30 06:00:17 +05:30
|
|
|
#include "core/hw/lcd.h"
|
2014-04-09 05:45:08 +05:30
|
|
|
#include "core/arm/disassembler/arm_disasm.h"
|
|
|
|
#include "core/arm/interpreter/arm_interpreter.h"
|
2013-09-06 04:03:46 +05:30
|
|
|
|
2014-05-23 08:24:07 +05:30
|
|
|
#include "core/hle/kernel/thread.h"
|
|
|
|
|
2013-09-06 04:03:46 +05:30
|
|
|
namespace Core {
|
|
|
|
|
2014-04-05 07:56:06 +05:30
|
|
|
ARM_Disasm* g_disasm = NULL; ///< ARM disassembler
|
|
|
|
ARM_Interface* g_app_core = NULL; ///< ARM11 application core
|
|
|
|
ARM_Interface* g_sys_core = NULL; ///< ARM11 system (OS) core
|
2013-09-06 04:03:46 +05:30
|
|
|
|
2013-09-27 07:31:09 +05:30
|
|
|
/// Run the core CPU loop
|
|
|
|
void RunLoop() {
|
2014-05-17 21:29:18 +05:30
|
|
|
for (;;){
|
2014-05-30 06:00:17 +05:30
|
|
|
g_app_core->Run(LCD::kFrameTicks / 2);
|
2014-05-17 21:29:18 +05:30
|
|
|
HW::Update();
|
2014-05-23 08:24:07 +05:30
|
|
|
Kernel::Reschedule();
|
2014-05-17 21:29:18 +05:30
|
|
|
}
|
2013-09-27 07:31:09 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/// Step the CPU one instruction
|
|
|
|
void SingleStep() {
|
2014-05-30 06:00:17 +05:30
|
|
|
static int ticks = 0;
|
|
|
|
|
2014-04-06 00:56:03 +05:30
|
|
|
g_app_core->Step();
|
2014-05-30 06:00:17 +05:30
|
|
|
|
|
|
|
if (ticks >= LCD::kFrameTicks / 2) {
|
|
|
|
HW::Update();
|
|
|
|
Kernel::Reschedule();
|
|
|
|
ticks = 0;
|
|
|
|
} else {
|
|
|
|
ticks++;
|
|
|
|
}
|
2013-09-06 04:03:46 +05:30
|
|
|
}
|
|
|
|
|
2013-09-27 07:31:09 +05:30
|
|
|
/// Halt the core
|
2013-10-02 04:37:33 +05:30
|
|
|
void Halt(const char *msg) {
|
2014-04-01 07:56:50 +05:30
|
|
|
// TODO(ShizZy): ImplementMe
|
2013-09-27 07:31:09 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/// Kill the core
|
2013-09-06 04:03:46 +05:30
|
|
|
void Stop() {
|
2014-04-01 07:56:50 +05:30
|
|
|
// TODO(ShizZy): ImplementMe
|
2013-09-06 04:03:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/// Initialize the core
|
2013-10-04 03:17:31 +05:30
|
|
|
int Init() {
|
2014-04-11 08:15:40 +05:30
|
|
|
NOTICE_LOG(MASTER_LOG, "initialized OK");
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2014-04-05 07:56:06 +05:30
|
|
|
g_disasm = new ARM_Disasm();
|
|
|
|
g_app_core = new ARM_Interpreter();
|
|
|
|
g_sys_core = new ARM_Interpreter();
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2014-04-05 07:56:06 +05:30
|
|
|
delete g_disasm;
|
|
|
|
delete g_app_core;
|
|
|
|
delete g_sys_core;
|
2014-04-06 00:56:03 +05:30
|
|
|
|
2014-04-11 08:15:40 +05:30
|
|
|
NOTICE_LOG(MASTER_LOG, "shutdown OK");
|
2013-09-06 04:03:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|