summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-07-26 14:41:14 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-07-26 14:41:14 -0400
commit8de41654fafdf4311034331e48a7e2723a3ea3ca (patch)
treeb6a07258c35f189f137dbfe29a5034c89800bd88 /src/emu/debug/debugcpu.h
parent6024c958b978b9d470ac7261257e5d2312f92178 (diff)
debugcpu.cpp: Move scripting functions down into console (nw)
Diffstat (limited to 'src/emu/debug/debugcpu.h')
-rw-r--r--src/emu/debug/debugcpu.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/emu/debug/debugcpu.h b/src/emu/debug/debugcpu.h
index f3e8f68a408..2244b6ccb42 100644
--- a/src/emu/debug/debugcpu.h
+++ b/src/emu/debug/debugcpu.h
@@ -504,12 +504,6 @@ public:
symbol_table *get_visible_symtable();
- /* ----- misc debugger functions ----- */
-
- /* specifies a debug command script to execute */
- void source_script(const char *file);
-
-
/* ----- debugger comment helpers ----- */
// save all comments for a given machine
@@ -581,7 +575,6 @@ public:
void halt_on_next_instruction(device_t *device, util::format_argument_pack<std::ostream> &&args);
void ensure_comments_loaded();
void reset_transient_flags();
- void process_source_file();
private:
static const size_t NUM_TEMP_VARIABLES;
@@ -611,8 +604,6 @@ private:
device_t * m_visiblecpu;
device_t * m_breakcpu;
- std::unique_ptr<std::istream> m_source_file; // script source file
-
std::unique_ptr<symbol_table> m_symtable; // global symbol table
bool m_within_instruction_hook;