all repos — mgba @ 90e57c027b05e9f58873e3ca7f4186b01ece4672

mGBA Game Boy Advance Emulator

Debugger: Rename read/write commands
Jeffrey Pfau jeffrey@endrift.com
Fri, 13 Feb 2015 00:56:43 -0800
commit

90e57c027b05e9f58873e3ca7f4186b01ece4672

parent

8ca2e3adbdf895fbac7fc3578fb703dfe5b6365c

2 files changed, 7 insertions(+), 6 deletions(-)

jump to
M CHANGESCHANGES

@@ -53,6 +53,7 @@ - GBA: Refactor gba directory, dropping gba- prefix and making supervisor directory

- 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:
M src/debugger/cli-debugger.csrc/debugger/cli-debugger.c

@@ -79,16 +79,16 @@ { "print/t", _printBin, CLIDVParse, "Print a value as binary" },

{ "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 } };