citra/src/core/core.h

41 lines
862 B
C
Raw Normal View History

2014-04-09 01:15:46 +02:00
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2014-04-09 01:15:46 +02:00
#pragma once
#include "core/arm/arm_interface.h"
#include "core/arm/interpreter/armdefs.h"
2014-04-04 03:22:13 +02:00
////////////////////////////////////////////////////////////////////////////////////////////////////
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 04:01:09 +02:00
/// Run the core CPU loop
void RunLoop();
/// Step the CPU one instruction
void SingleStep();
2013-09-27 04:01:09 +02:00
/// Halt the core
void Halt(const char *msg);
2013-09-27 04:01:09 +02:00
/// Kill the core
void Stop();
/// Initialize the core
int Init();
/// Shutdown the core
void Shutdown();
} // namespace