2014-04-08 16:19:26 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 15:33:46 -07:00
|
|
|
|
2014-04-08 17:15:08 -07:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/log.h"
|
2014-05-17 08:59:18 -07:00
|
|
|
#include "common/symbols.h"
|
2014-04-08 17:15:08 -07:00
|
|
|
|
2014-05-17 08:59:18 -07:00
|
|
|
#include "core/core.h"
|
2014-04-08 17:15:08 -07:00
|
|
|
#include "core/mem_map.h"
|
|
|
|
#include "core/hw/hw.h"
|
|
|
|
#include "core/arm/disassembler/arm_disasm.h"
|
|
|
|
#include "core/arm/interpreter/arm_interpreter.h"
|
2013-09-05 15:33:46 -07:00
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2014-04-04 19:26:06 -07:00
|
|
|
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-05 15:33:46 -07:00
|
|
|
|
2013-09-26 19:01:09 -07:00
|
|
|
/// Run the core CPU loop
|
|
|
|
void RunLoop() {
|
2014-05-17 08:59:18 -07:00
|
|
|
for (;;){
|
|
|
|
g_app_core->Run(10000);
|
|
|
|
HW::Update();
|
|
|
|
}
|
2013-09-26 19:01:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Step the CPU one instruction
|
|
|
|
void SingleStep() {
|
2014-04-05 12:26:03 -07:00
|
|
|
g_app_core->Step();
|
2013-09-05 15:33:46 -07:00
|
|
|
}
|
|
|
|
|
2013-09-26 19:01:09 -07:00
|
|
|
/// Halt the core
|
2013-10-01 16:07:33 -07:00
|
|
|
void Halt(const char *msg) {
|
2014-03-31 19:26:50 -07:00
|
|
|
// TODO(ShizZy): ImplementMe
|
2013-09-26 19:01:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Kill the core
|
2013-09-05 15:33:46 -07:00
|
|
|
void Stop() {
|
2014-03-31 19:26:50 -07:00
|
|
|
// TODO(ShizZy): ImplementMe
|
2013-09-05 15:33:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Initialize the core
|
2013-10-03 14:47:31 -07:00
|
|
|
int Init() {
|
2014-04-10 19:45:40 -07:00
|
|
|
NOTICE_LOG(MASTER_LOG, "initialized OK");
|
2014-03-31 19:26:50 -07:00
|
|
|
|
2014-04-04 19:26:06 -07:00
|
|
|
g_disasm = new ARM_Disasm();
|
|
|
|
g_app_core = new ARM_Interpreter();
|
|
|
|
g_sys_core = new ARM_Interpreter();
|
2014-03-31 19:26:50 -07:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2014-04-04 19:26:06 -07:00
|
|
|
delete g_disasm;
|
|
|
|
delete g_app_core;
|
|
|
|
delete g_sys_core;
|
2014-04-05 12:26:03 -07:00
|
|
|
|
2014-04-10 19:45:40 -07:00
|
|
|
NOTICE_LOG(MASTER_LOG, "shutdown OK");
|
2013-09-05 15:33:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|