2014-04-08 23:15:46 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2014-04-08 23:15:46 +00:00
|
|
|
#pragma once
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "core/arm/arm_interface.h"
|
2014-09-11 01:27:14 +00:00
|
|
|
#include "core/arm/skyeye_common/armdefs.h"
|
2014-04-04 01:22:13 +00:00
|
|
|
|
2013-09-05 22:33:46 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2014-04-05 02:26:06 +00:00
|
|
|
extern ARM_Interface* g_app_core; ///< ARM11 application core
|
|
|
|
extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-09-05 22:33:46 +00:00
|
|
|
/// Start the core
|
|
|
|
void Start();
|
|
|
|
|
2014-08-30 03:24:32 +00:00
|
|
|
/**
|
|
|
|
* Run the core CPU loop
|
|
|
|
* This function loops for 100 instructions in the CPU before trying to update hardware. This is a
|
|
|
|
* little bit faster than SingleStep, and should be pretty much equivalent. The number of
|
|
|
|
* instructions chosen is fairly arbitrary, however a large number will more drastically affect the
|
|
|
|
* frequency of GSP interrupts and likely break things. The point of this is to just loop in the CPU
|
|
|
|
* for more than 1 instruction to reduce overhead and make it a little bit faster...
|
|
|
|
*/
|
|
|
|
void RunLoop(int tight_loop=100);
|
2013-09-27 02:01:09 +00:00
|
|
|
|
|
|
|
/// Step the CPU one instruction
|
|
|
|
void SingleStep();
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2013-09-27 02:01:09 +00:00
|
|
|
/// Halt the core
|
2013-10-01 23:07:33 +00:00
|
|
|
void Halt(const char *msg);
|
2013-09-27 02:01:09 +00:00
|
|
|
|
|
|
|
/// Kill the core
|
2013-09-05 22:33:46 +00:00
|
|
|
void Stop();
|
|
|
|
|
|
|
|
/// Initialize the core
|
2013-10-03 21:47:31 +00:00
|
|
|
int Init();
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2014-04-05 04:01:07 +00:00
|
|
|
/// Shutdown the core
|
|
|
|
void Shutdown();
|
|
|
|
|
2013-09-05 22:33:46 +00:00
|
|
|
} // namespace
|