Debugger: Rename read/write commands

This commit is contained in:
Jeffrey Pfau 2015-02-13 00:56:43 -08:00
parent 8ca2e3adbd
commit 90e57c027b
2 changed files with 7 additions and 6 deletions

View File

@ -53,6 +53,7 @@ Misc:
- Debugger: Add support for soft breakpoints
- Util: Use proper locale for reading and writing float values
- Debugger: Make I/O register names be addresses instead of values
- Debugger: Rename read/write commands
0.1.1: (2015-01-24)
Bugfixes:

View File

@ -79,16 +79,16 @@ static struct CLIDebuggerCommandSummary _debuggerCommands[] = {
{ "print/x", _printHex, CLIDVParse, "Print a value as hexadecimal" },
{ "q", _quit, 0, "Quit the emulator" },
{ "quit", _quit, 0, "Quit the emulator" },
{ "rb", _readByte, CLIDVParse, "Read a byte from a specified offset" },
{ "reset", _reset, 0, "Reset the emulation" },
{ "rh", _readHalfword, CLIDVParse, "Read a halfword from a specified offset" },
{ "rw", _readWord, CLIDVParse, "Read a word from a specified offset" },
{ "r/1", _readByte, CLIDVParse, "Read a byte from a specified offset" },
{ "r/2", _readHalfword, CLIDVParse, "Read a halfword from a specified offset" },
{ "r/4", _readWord, CLIDVParse, "Read a word from a specified offset" },
{ "status", _printStatus, 0, "Print the current status" },
{ "w", _setWatchpoint, CLIDVParse, "Set a watchpoint" },
{ "watch", _setWatchpoint, CLIDVParse, "Set a watchpoint" },
{ "wb", _writeByte, CLIDVParse, "Write a byte at a specified offset" },
{ "wh", _writeHalfword, CLIDVParse, "Write a halfword at a specified offset" },
{ "ww", _writeWord, CLIDVParse, "Write a word at a specified offset" },
{ "w/1", _writeByte, CLIDVParse, "Write a byte at a specified offset" },
{ "w/2", _writeHalfword, CLIDVParse, "Write a halfword at a specified offset" },
{ "w/4", _writeWord, CLIDVParse, "Write a word at a specified offset" },
{ "x", _breakInto, 0, "Break into attached debugger (for developers)" },
{ 0, 0, 0, 0 }
};