From 8ec961d2e84b6042d0c621ac2983f8b72986a7b2 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Thu, 27 Nov 2014 08:58:22 -0800 Subject: [PATCH] Debugger: Add reset command --- src/debugger/cli-debugger.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/debugger/cli-debugger.c b/src/debugger/cli-debugger.c index 316e4acce..3ffae652b 100644 --- a/src/debugger/cli-debugger.c +++ b/src/debugger/cli-debugger.c @@ -44,6 +44,7 @@ static void _printStatus(struct CLIDebugger*, struct DebugVector*); static void _printHelp(struct CLIDebugger*, struct DebugVector*); static void _quit(struct CLIDebugger*, struct DebugVector*); static void _readByte(struct CLIDebugger*, struct DebugVector*); +static void _reset(struct CLIDebugger*, struct DebugVector*); static void _readHalfword(struct CLIDebugger*, struct DebugVector*); static void _readWord(struct CLIDebugger*, struct DebugVector*); static void _setBreakpoint(struct CLIDebugger*, struct DebugVector*); @@ -90,6 +91,7 @@ static struct { { "q", _quit, 0, "Quit the emulator" }, { "quit", _quit, 0, "Quit the emulator" }, { "rb", _readByte, _DVParse, "Read a byte from a specified offset" }, + { "reset", _reset, 0, "Reset the emulation" }, { "rh", _readHalfword, _DVParse, "Read a halfword from a specified offset" }, { "rw", _readWord, _DVParse, "Read a word from a specified offset" }, { "status", _printStatus, 0, "Print the current status" }, @@ -286,6 +288,12 @@ static void _readByte(struct CLIDebugger* debugger, struct DebugVector* dv) { printf(" 0x%02X\n", value); } +static void _reset(struct CLIDebugger* debugger, struct DebugVector* dv) { + UNUSED(dv); + ARMReset(debugger->d.cpu); + _printStatus(debugger, 0); +} + static void _readHalfword(struct CLIDebugger* debugger, struct DebugVector* dv) { if (!dv || dv->type != DV_INT_TYPE) { printf("%s\n", ERROR_MISSING_ARGS);