mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 08:15:46 +00:00
core/debugger: Implement new GDB stub debugger
This commit is contained in:
parent
7f1bf5c7a7
commit
2ee161a0bf
27 changed files with 1500 additions and 42 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue