mirror of
https://github.com/libretro/mgba.git
synced 2024-11-23 16:10:01 +00:00
Debugger: Rename read/write commands
This commit is contained in:
parent
8ca2e3adbd
commit
90e57c027b
1
CHANGES
1
CHANGES
@ -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:
|
||||
|
@ -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 }
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user