2014-04-09 04:45:46 +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 04:45:46 +05:30
|
|
|
#pragma once
|
2013-09-06 04:03:46 +05:30
|
|
|
|
2014-04-09 05:45:08 +05:30
|
|
|
#include "core/arm/arm_interface.h"
|
|
|
|
#include "core/arm/interpreter/armdefs.h"
|
2014-04-04 06:52:13 +05:30
|
|
|
|
2013-09-06 04:03:46 +05:30
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2014-04-05 07:56:06 +05:30
|
|
|
extern ARM_Interface* g_app_core; ///< ARM11 application core
|
|
|
|
extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-09-06 04:03:46 +05:30
|
|
|
/// Start the core
|
|
|
|
void Start();
|
|
|
|
|
2013-09-27 07:31:09 +05:30
|
|
|
/// Run the core CPU loop
|
|
|
|
void RunLoop();
|
|
|
|
|
|
|
|
/// Step the CPU one instruction
|
|
|
|
void SingleStep();
|
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);
|
2013-09-27 07:31:09 +05:30
|
|
|
|
|
|
|
/// Kill the core
|
2013-09-06 04:03:46 +05:30
|
|
|
void Stop();
|
|
|
|
|
|
|
|
/// Initialize the core
|
2013-10-04 03:17:31 +05:30
|
|
|
int Init();
|
2013-09-06 04:03:46 +05:30
|
|
|
|
2014-04-05 09:31:07 +05:30
|
|
|
/// Shutdown the core
|
|
|
|
void Shutdown();
|
|
|
|
|
2013-09-06 04:03:46 +05:30
|
|
|
} // namespace
|