From fb4b3c127f7c390358d7f4cadd2f58de116fec48 Mon Sep 17 00:00:00 2001 From: Liam Date: Mon, 30 May 2022 19:35:01 -0400 Subject: core/debugger: Implement new GDB stub debugger --- src/core/arm/arm_interface.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/core/arm/arm_interface.h') diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 8ce973a77..7842c626b 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h @@ -66,9 +66,6 @@ public: /// Runs the CPU until an event happens virtual void Run() = 0; - /// Step CPU by one instruction - virtual void Step() = 0; - /// Clear all instruction cache virtual void ClearInstructionCache() = 0; @@ -194,6 +191,8 @@ public: void LogBacktrace() const; + bool ShouldStep() const; + protected: /// System context that this ARM interface is running under. System& system; -- cgit v1.2.3