diff options
author | 2016-06-05 16:11:08 +0200 | |
---|---|---|
committer | 2016-06-05 16:11:28 +0200 | |
commit | 62b82f2937f00c1abdbc0c33039109af1a8d6b3a (patch) | |
tree | 9d694caa35aa5fdd546f732dccfa4d473a10a46e /src/emu/debug/debugcmd.cpp | |
parent | ea46245a9a435bca5f01a74eb8391e33c70e28bb (diff) |
TODO note, nw
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r-- | src/emu/debug/debugcmd.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index 74a898f6c60..0ee23f94638 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -1219,6 +1219,19 @@ static void execute_comment_save(running_machine &machine, int ref, int params, debug_console_printf(machine, "Comment not saved\n"); } +// TODO: add color hex editing capabilities for comments, see below for more info +/** + * @fn void execute_comment_color(running_machine &machine, int ref, int params, const char *param[]) + * @brief Modifies comment given at address $xx with given color + * Useful for marking comment with a different color scheme (for example by marking start and end of a given function visually). + * @param[in] "address,color" First is the comment address in the current context, color can be hexadecimal or shorthanded to common 1bpp RGB names. + * + * @todo check if the comment exists in the first place, bail out with error if not. + * @todo add shorthand for color modify and save + * + */ + + /*------------------------------------------------- execute_bpset - execute the breakpoint set |