summaryrefslogtreecommitdiff
path: root/src/core/arm/arm_interface.h
diff options
context:
space:
mode:
authorGravatar Liam2022-05-30 19:35:01 -0400
committerGravatar Liam2022-06-01 00:01:25 -0400
commitfb4b3c127f7c390358d7f4cadd2f58de116fec48 (patch)
treee2588a859d364a32be0cd9e0401a345c6492d1a7 /src/core/arm/arm_interface.h
parentMerge pull request #8368 from german77/seventimes (diff)
downloadyuzu-fb4b3c127f7c390358d7f4cadd2f58de116fec48.tar.gz
yuzu-fb4b3c127f7c390358d7f4cadd2f58de116fec48.tar.xz
yuzu-fb4b3c127f7c390358d7f4cadd2f58de116fec48.zip
core/debugger: Implement new GDB stub debugger
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r--src/core/arm/arm_interface.h5
1 files changed, 2 insertions, 3 deletions
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:
66 /// Runs the CPU until an event happens 66 /// Runs the CPU until an event happens
67 virtual void Run() = 0; 67 virtual void Run() = 0;
68 68
69 /// Step CPU by one instruction
70 virtual void Step() = 0;
71
72 /// Clear all instruction cache 69 /// Clear all instruction cache
73 virtual void ClearInstructionCache() = 0; 70 virtual void ClearInstructionCache() = 0;
74 71
@@ -194,6 +191,8 @@ public:
194 191
195 void LogBacktrace() const; 192 void LogBacktrace() const;
196 193
194 bool ShouldStep() const;
195
197protected: 196protected:
198 /// System context that this ARM interface is running under. 197 /// System context that this ARM interface is running under.
199 System& system; 198 System& system;