summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r--src/emu/debug/debugcmd.cpp13
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