Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Features:
- Initial support for bootleg GBA multicarts
- Debugger: Add range watchpoints
- Debugger: Add enabling/disabling for breakpoints and watchpoints
- Debugger: Add save/load function for breakpoints and watchpoints
- "Headless" frontend for running tests, automation, etc.
Emulation fixes:
- ARM: Add framework for coprocessor support
Expand Down
2 changes: 2 additions & 0 deletions include/mgba/debugger/debugger.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ struct mBreakpoint {
struct ParseTree* condition;
bool disabled;
bool isTemporary;
char* representation;
};

struct mWatchpoint {
Expand All @@ -145,6 +146,7 @@ struct mWatchpoint {
enum mWatchpointType type;
struct ParseTree* condition;
bool disabled;
char* representation;
};

struct mDebuggerInstructionInfo {
Expand Down
Loading