core/debugger: Implement new GDB stub debugger
This commit is contained in:
parent
f6c47df671
commit
fb4b3c127f
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