diff options
Diffstat (limited to 'src/emu/debug/debugcon.h')
-rw-r--r-- | src/emu/debug/debugcon.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emu/debug/debugcon.h b/src/emu/debug/debugcon.h index e57b06a7378..ac7957e4aa1 100644 --- a/src/emu/debug/debugcon.h +++ b/src/emu/debug/debugcon.h @@ -118,6 +118,9 @@ private: CMDERR internal_execute_command(bool execute, int params, char **param); CMDERR internal_parse_command(const std::string &original_command, bool execute); + void print_core(const char *text); // core text output + void print_core_wrap(const char *text, int wrapcol); // core text output + struct debug_command { debug_command(const char *_command, u32 _flags, int _ref, int _minparams, int _maxparams, std::function<void(int, const std::vector<std::string> &)> _handler); @@ -140,6 +143,7 @@ private: std::forward_list<debug_command> m_commandlist; std::unique_ptr<std::istream> m_source_file; // script source file + std::unique_ptr<emu_file> m_logfile; // logfile for debug console output }; #endif // MAME_EMU_DEBUG_DEBUGCON_H |