citra/src/core/core.h

41 lines
862 B
C
Raw Normal View History

2014-04-09 04:45:46 +05:30
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2014-04-09 04:45:46 +05:30
#pragma once
#include "core/arm/arm_interface.h"
#include "core/arm/interpreter/armdefs.h"
2014-04-04 06:52:13 +05:30
////////////////////////////////////////////////////////////////////////////////////////////////////
namespace Core {
extern ARM_Interface* g_app_core; ///< ARM11 application core
extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core
////////////////////////////////////////////////////////////////////////////////////////////////////
/// 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-27 07:31:09 +05:30
/// Halt the core
void Halt(const char *msg);
2013-09-27 07:31:09 +05:30
/// Kill the core
void Stop();
/// Initialize the core
int Init();
/// Shutdown the core
void Shutdown();
} // namespace