Debugger: Add reset command

This commit is contained in:
Jeffrey Pfau 2014-11-27 08:58:22 -08:00
parent e7fa65f876
commit 8ec961d2e8
1 changed files with 8 additions and 0 deletions

View File

@ -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);