summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index a3834adae..49ac8be6e 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -3,9 +3,7 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <memory> 5#include <memory>
6
7#include "common/logging/log.h" 6#include "common/logging/log.h"
8
9#include "core/arm/arm_interface.h" 7#include "core/arm/arm_interface.h"
10#include "core/arm/dynarmic/arm_dynarmic.h" 8#include "core/arm/dynarmic/arm_dynarmic.h"
11#include "core/arm/dyncom/arm_dyncom.h" 9#include "core/arm/dyncom/arm_dyncom.h"
@@ -27,8 +25,8 @@ void RunLoop(int tight_loop) {
27 if (GDBStub::g_server_enabled) { 25 if (GDBStub::g_server_enabled) {
28 GDBStub::HandlePacket(); 26 GDBStub::HandlePacket();
29 27
30 // If the loop is halted and we want to step, use a tiny (1) number of instructions to execute. 28 // If the loop is halted and we want to step, use a tiny (1) number of instructions to
31 // Otherwise get out of the loop function. 29 // execute. Otherwise, get out of the loop function.
32 if (GDBStub::GetCpuHaltFlag()) { 30 if (GDBStub::GetCpuHaltFlag()) {
33 if (GDBStub::GetCpuStepFlag()) { 31 if (GDBStub::GetCpuStepFlag()) {
34 GDBStub::SetCpuStepFlag(false); 32 GDBStub::SetCpuStepFlag(false);
@@ -62,7 +60,7 @@ void SingleStep() {
62} 60}
63 61
64/// Halt the core 62/// Halt the core
65void Halt(const char *msg) { 63void Halt(const char* msg) {
66 // TODO(ShizZy): ImplementMe 64 // TODO(ShizZy): ImplementMe
67} 65}
68 66