summaryrefslogtreecommitdiffstats
path: root/src/emu/debug/debugcmd.cpp
diff options
context:
space:
mode:
author Vas Crabb <cuavas@users.noreply.github.com>2017-12-15 19:51:34 +1100
committer Vas Crabb <cuavas@users.noreply.github.com>2017-12-15 19:52:08 +1100
commit2d6a478ae69609ccca0155dad638e7183b843d35 (patch)
tree9ad513e474f58e311ee1ae5504169245abb3d48e /src/emu/debug/debugcmd.cpp
parentd4262448b00f6107e8deaa17885db1843ee03ed7 (diff)
Revert "Command to print all debugger help to html file"
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r--src/emu/debug/debugcmd.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp
index 3c75febe3bc..c3b794fd525 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -137,7 +137,6 @@ debugger_commands::debugger_commands(running_machine& machine, debugger_cpu& cpu
/* add all the commands */
m_console.register_command("help", CMDFLAG_NONE, 0, 0, 1, std::bind(&debugger_commands::execute_help, this, _1, _2));
- m_console.register_command("html", CMDFLAG_NONE, 0, 0, 0, std::bind(&debugger_commands::execute_html, this, _1, _2));
m_console.register_command("print", CMDFLAG_NONE, 0, 1, MAX_COMMAND_PARAMS, std::bind(&debugger_commands::execute_print, this, _1, _2));
m_console.register_command("printf", CMDFLAG_NONE, 0, 1, MAX_COMMAND_PARAMS, std::bind(&debugger_commands::execute_printf, this, _1, _2));
m_console.register_command("logerror", CMDFLAG_NONE, 0, 1, MAX_COMMAND_PARAMS, std::bind(&debugger_commands::execute_logerror, this, _1, _2));
@@ -555,19 +554,6 @@ void debugger_commands::execute_help(int ref, const std::vector<std::string> &pa
/*-------------------------------------------------
- execute_html - generate debughelp.html
--------------------------------------------------*/
-
-void debugger_commands::execute_html(int ref, const std::vector<std::string> &params)
-{
- if (debug_generate_html())
- m_console.printf("debughelp.html has been successfully created.\n");
- else
- m_console.printf("Error creating debughelp.html.");
-}
-
-
-/*-------------------------------------------------
execute_print - execute the print command
-------------------------------------------------*/