Files
eden/src/core/core.h
T

41 lines
852 B
C++
Raw Normal View History

2014-04-08 19:15:46 -04:00
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2013-09-05 18:33:46 -04:00
2014-04-08 19:15:46 -04:00
#pragma once
2013-09-05 18:33:46 -04:00
2014-04-04 22:26:06 -04:00
#include "arm/arm_interface.h"
#include "arm/interpreter/armdefs.h"
2014-04-03 21:22:13 -04:00
2013-09-05 18:33:46 -04:00
////////////////////////////////////////////////////////////////////////////////////////////////////
namespace Core {
2014-04-04 22:26:06 -04:00
extern ARM_Interface* g_app_core; ///< ARM11 application core
extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core
////////////////////////////////////////////////////////////////////////////////////////////////////
2013-09-05 18:33:46 -04:00
/// Start the core
void Start();
2013-09-26 22:01:09 -04:00
/// Run the core CPU loop
void RunLoop();
/// Step the CPU one instruction
void SingleStep();
2013-09-05 18:33:46 -04:00
2013-09-26 22:01:09 -04:00
/// Halt the core
void Halt(const char *msg);
2013-09-26 22:01:09 -04:00
/// Kill the core
2013-09-05 18:33:46 -04:00
void Stop();
/// Initialize the core
int Init();
2013-09-05 18:33:46 -04:00
2014-04-05 00:01:07 -04:00
/// Shutdown the core
void Shutdown();
2013-09-05 18:33:46 -04:00
} // namespace