2014-04-08 16:15:46 -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 16:15:46 -07:00
|
|
|
#pragma once
|
2013-09-05 15:33:46 -07:00
|
|
|
|
2014-04-08 17:15:08 -07:00
|
|
|
#include "core/arm/arm_interface.h"
|
|
|
|
#include "core/arm/interpreter/armdefs.h"
|
2014-04-03 18:22:13 -07:00
|
|
|
|
2013-09-05 15:33:46 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2014-04-04 19:26:06 -07:00
|
|
|
extern ARM_Interface* g_app_core; ///< ARM11 application core
|
|
|
|
extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-09-05 15:33:46 -07:00
|
|
|
/// Start the core
|
|
|
|
void Start();
|
|
|
|
|
2013-09-26 19:01:09 -07:00
|
|
|
/// Run the core CPU loop
|
|
|
|
void RunLoop();
|
|
|
|
|
|
|
|
/// Step the CPU one instruction
|
|
|
|
void SingleStep();
|
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);
|
2013-09-26 19:01:09 -07:00
|
|
|
|
|
|
|
/// Kill the core
|
2013-09-05 15:33:46 -07:00
|
|
|
void Stop();
|
|
|
|
|
|
|
|
/// Initialize the core
|
2013-10-03 14:47:31 -07:00
|
|
|
int Init();
|
2013-09-05 15:33:46 -07:00
|
|
|
|
2014-04-04 21:01:07 -07:00
|
|
|
/// Shutdown the core
|
|
|
|
void Shutdown();
|
|
|
|
|
2013-09-05 15:33:46 -07:00
|
|
|
} // namespace
|