summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.h
diff options
context:
space:
mode:
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;