2014-04-08 18:15:46 -05:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 17:33:46 -05:00
|
|
|
|
2014-04-08 18:15:46 -05:00
|
|
|
#pragma once
|
2013-09-05 17:33:46 -05:00
|
|
|
|
2014-04-08 19:15:08 -05:00
|
|
|
#include "core/arm/arm_interface.h"
|
2014-09-10 20:27:14 -05:00
|
|
|
#include "core/arm/skyeye_common/armdefs.h"
|
2014-04-03 20:22:13 -05:00
|
|
|
|
2013-09-05 17:33:46 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2014-10-25 14:54:44 -05:00
|
|
|
enum CPUCore {
|
|
|
|
CPU_Interpreter,
|
|
|
|
CPU_FastInterpreter
|
|
|
|
};
|
|
|
|
|
2014-04-04 21:26:06 -05:00
|
|
|
extern ARM_Interface* g_app_core; ///< ARM11 application core
|
|
|
|
extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-09-05 17:33:46 -05:00
|
|
|
/// Start the core
|
|
|
|
void Start();
|
|
|
|
|
2014-08-29 22:24:32 -05:00
|
|
|
/**
|
|
|
|
* Run the core CPU loop
|
2014-11-09 15:56:57 -06:00
|
|
|
* This function runs the core for the specified number of CPU instructions before trying to update
|
|
|
|
* hardware. This is much faster than SingleStep (and should be equivalent), as the CPU is not
|
|
|
|
* required to do a full dispatch with each instruction. NOTE: the number of instructions requested
|
|
|
|
* is not guaranteed to run, as this will be interrupted preemptively if a hardware update is
|
|
|
|
* requested (e.g. on a thread switch).
|
2014-08-29 22:24:32 -05:00
|
|
|
*/
|
2014-11-09 15:56:57 -06:00
|
|
|
void RunLoop(int tight_loop=1000);
|
2013-09-26 21:01:09 -05:00
|
|
|
|
|
|
|
/// Step the CPU one instruction
|
|
|
|
void SingleStep();
|
2013-09-05 17:33:46 -05:00
|
|
|
|
2013-09-26 21:01:09 -05:00
|
|
|
/// Halt the core
|
2013-10-01 18:07:33 -05:00
|
|
|
void Halt(const char *msg);
|
2013-09-26 21:01:09 -05:00
|
|
|
|
|
|
|
/// Kill the core
|
2013-09-05 17:33:46 -05:00
|
|
|
void Stop();
|
|
|
|
|
|
|
|
/// Initialize the core
|
2013-10-03 16:47:31 -05:00
|
|
|
int Init();
|
2013-09-05 17:33:46 -05:00
|
|
|
|
2014-04-04 23:01:07 -05:00
|
|
|
/// Shutdown the core
|
|
|
|
void Shutdown();
|
|
|
|
|
2013-09-05 17:33:46 -05:00
|
|
|
} // namespace
|