1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-17 13:20:15 -06:00
suyu-mirror/src/core/core.h

41 lines
862 B
C
Raw Normal View History

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