all repos — mgba @ 7506bf8f1948b9ba9d4a4c6ff07002f456d6fa59

mGBA Game Boy Advance Emulator

Debugger: Accept break/a, break/t
Anthony J. Bentley anthony@anjbe.name
Wed, 29 Jul 2015 02:08:36 -0600
commit

7506bf8f1948b9ba9d4a4c6ff07002f456d6fa59

parent

ec8911ce56da596f8d522344f2a7b4e564fc1538

1 files changed, 2 insertions(+), 0 deletions(-)

jump to
M src/debugger/cli-debugger.csrc/debugger/cli-debugger.c

@@ -56,6 +56,8 @@ { "b", _setBreakpoint, CLIDVParse, "Set a breakpoint" },

{ "b/a", _setBreakpointARM, CLIDVParse, "Set a software breakpoint as ARM" }, { "b/t", _setBreakpointThumb, CLIDVParse, "Set a software breakpoint as Thumb" }, { "break", _setBreakpoint, CLIDVParse, "Set a breakpoint" }, + { "break/a", _setBreakpointARM, CLIDVParse, "Set a software breakpoint as ARM" }, + { "break/t", _setBreakpointThumb, CLIDVParse, "Set a software breakpoint as Thumb" }, { "c", _continue, 0, "Continue execution" }, { "continue", _continue, 0, "Continue execution" }, { "d", _clearBreakpoint, CLIDVParse, "Delete a breakpoint" },