diff options
author | 2016-06-05 15:30:26 +0200 | |
---|---|---|
committer | 2016-06-05 16:11:27 +0200 | |
commit | ea46245a9a435bca5f01a74eb8391e33c70e28bb (patch) | |
tree | a27070ee0b2d4e8d16814a012afb493a1b5a666b | |
parent | 3a30f52296290ae51b37a39d4f477461bce51eb2 (diff) |
Added commit command to debugger. [Angelo Salese]
-rw-r--r-- | src/emu/debug/debugcmd.cpp | 29 | ||||
-rw-r--r-- | src/emu/debug/debughlp.cpp | 18 |
2 files changed, 39 insertions, 8 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index f543031b0af..74a898f6c60 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -112,10 +112,11 @@ static void execute_focus(running_machine &machine, int ref, int params, const c static void execute_ignore(running_machine &machine, int ref, int params, const char **param); static void execute_observe(running_machine &machine, int ref, int params, const char **param); static void execute_next(running_machine &machine, int ref, int params, const char **param); -static void execute_comment(running_machine &machine, int ref, int params, const char **param); +static void execute_comment_add(running_machine &machine, int ref, int params, const char **param); static void execute_comment_del(running_machine &machine, int ref, int params, const char **param); static void execute_comment_save(running_machine &machine, int ref, int params, const char **param); static void execute_comment_list(running_machine &machine, int ref, int params, const char **param); +static void execute_comment_commit(running_machine &machine, int ref, int params, const char **param); static void execute_bpset(running_machine &machine, int ref, int params, const char **param); static void execute_bpclear(running_machine &machine, int ref, int params, const char **param); static void execute_bpdisenable(running_machine &machine, int ref, int params, const char **param); @@ -296,12 +297,14 @@ void debug_command_init(running_machine &machine) debug_console_register_command(machine, "ignore", CMDFLAG_NONE, 0, 0, MAX_COMMAND_PARAMS, execute_ignore); debug_console_register_command(machine, "observe", CMDFLAG_NONE, 0, 0, MAX_COMMAND_PARAMS, execute_observe); - debug_console_register_command(machine, "comadd", CMDFLAG_NONE, 0, 1, 2, execute_comment); - debug_console_register_command(machine, "//", CMDFLAG_NONE, 0, 1, 2, execute_comment); + debug_console_register_command(machine, "comadd", CMDFLAG_NONE, 0, 1, 2, execute_comment_add); + debug_console_register_command(machine, "//", CMDFLAG_NONE, 0, 1, 2, execute_comment_add); debug_console_register_command(machine, "comdelete", CMDFLAG_NONE, 0, 1, 1, execute_comment_del); debug_console_register_command(machine, "comsave", CMDFLAG_NONE, 0, 0, 0, execute_comment_save); debug_console_register_command(machine, "comlist", CMDFLAG_NONE, 0, 0, 0, execute_comment_list); - + debug_console_register_command(machine, "commit", CMDFLAG_NONE, 0, 1, 2, execute_comment_commit); + debug_console_register_command(machine, "/*", CMDFLAG_NONE, 0, 1, 2, execute_comment_commit); + debug_console_register_command(machine, "bpset", CMDFLAG_NONE, 0, 1, 3, execute_bpset); debug_console_register_command(machine, "bp", CMDFLAG_NONE, 0, 1, 3, execute_bpset); debug_console_register_command(machine, "bpclear", CMDFLAG_NONE, 0, 0, 1, execute_bpclear); @@ -1130,7 +1133,7 @@ static void execute_observe(running_machine &machine, int ref, int params, const execute_comment - add a comment to a line -------------------------------------------------*/ -static void execute_comment(running_machine &machine, int ref, int params, const char *param[]) +static void execute_comment_add(running_machine &machine, int ref, int params, const char *param[]) { device_t *cpu; UINT64 address; @@ -1192,18 +1195,28 @@ static void execute_comment_list(running_machine &machine, int ref, int params, debug_console_printf(machine, "Error while parsing XML file\n"); } +/** + * @fn void execute_comment_commit(running_machine &machine, int ref, int params, const char *param[]) + * @brief Add and Save current list of comments in debugger + * + */ +static void execute_comment_commit(running_machine &machine, int ref, int params, const char *param[]) +{ + execute_comment_add(machine,ref,params,param); + execute_comment_save(machine,ref,params,param); +} + /*------------------------------------------------- execute_comment - add a comment to a line -------------------------------------------------*/ -// TODO: needs an autosave option in debugger for this, or a direct comment add and save. static void execute_comment_save(running_machine &machine, int ref, int params, const char *param[]) { if (debug_comment_save(machine)) - debug_console_printf(machine, "Comments successfully saved\n"); + debug_console_printf(machine, "Comment successfully saved\n"); else - debug_console_printf(machine, "Comments not saved\n"); + debug_console_printf(machine, "Comment not saved\n"); } diff --git a/src/emu/debug/debughlp.cpp b/src/emu/debug/debughlp.cpp index eaf77a1e59c..d397c726f15 100644 --- a/src/emu/debug/debughlp.cpp +++ b/src/emu/debug/debughlp.cpp @@ -227,6 +227,7 @@ static const help_item static_help_list[] = " comdelete <address> -- removes a comment from the given address\n" " comsave -- save the current comments to a file\n" " comlist -- print currently avaliable comments from file\n" + " commit[/*] <address>,<comment> -- gives a bulk comadd then comsave command\n" "\n" }, { @@ -1253,6 +1254,23 @@ static const help_item static_help_list[] = "\n" }, { + "commit", + "\n" + " commit[/*] <address>,<comment>\n" + "\n" + "Adds a string <comment> to the disassembled code at <address> then saves to file. Basically same as comadd + comsave via a single line.\n" + "The shortcut for this command is simply '/*'\n" + "\n" + "Examples:\n" + "\n" + "commit 0, hello world.\n" + " Adds the comment 'hello world.' to the code at address 0x0\n" + "\n" + "/* 10, undocumented opcode!\n" + " Adds the comment 'undocumented opcode!' to the code at address 0x10\n" + "\n" + }, + { "comsave", "\n" " comsave\n" |