summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-06-29 08:34:30 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-06-29 08:34:30 +0200
commit63f9a01f8c5d43b9cfe68c2d401a84647d19c10e (patch)
treea1f1874aa84850bddbebd2b0e0bfc3e1c77ce8c4 /src/emu/debug/debugcpu.h
parent1f6f1bfd6cfb748d9c5e159d6bd014bab8d30944 (diff)
Cleanup and version bumpmame0175
Diffstat (limited to 'src/emu/debug/debugcpu.h')
-rw-r--r--src/emu/debug/debugcpu.h39
1 files changed, 19 insertions, 20 deletions
diff --git a/src/emu/debug/debugcpu.h b/src/emu/debug/debugcpu.h
index 757fc57649a..7dfebf0cb76 100644
--- a/src/emu/debug/debugcpu.h
+++ b/src/emu/debug/debugcpu.h
@@ -603,36 +603,35 @@ private:
/* internal helpers */
void on_vblank(screen_device &device, bool vblank_state);
- running_machine& m_machine;
+ running_machine& m_machine;
- device_t * m_livecpu;
- device_t * m_visiblecpu;
- device_t * m_breakcpu;
+ device_t * m_livecpu;
+ device_t * m_visiblecpu;
+ device_t * m_breakcpu;
- FILE * m_source_file; // script source file
+ FILE * m_source_file; // script source file
- std::unique_ptr<symbol_table> m_symtable; // global symbol table
+ std::unique_ptr<symbol_table> m_symtable; // global symbol table
- bool m_within_instruction_hook;
- bool m_vblank_occurred;
- bool m_memory_modified;
- bool m_debugger_access;
+ bool m_within_instruction_hook;
+ bool m_vblank_occurred;
+ bool m_memory_modified;
+ bool m_debugger_access;
- int m_execution_state;
- device_t * m_stop_when_not_device; // stop execution when the device ceases to be this
+ int m_execution_state;
+ device_t * m_stop_when_not_device; // stop execution when the device ceases to be this
- UINT32 m_bpindex;
- UINT32 m_wpindex;
- UINT32 m_rpindex;
+ UINT32 m_bpindex;
+ UINT32 m_wpindex;
+ UINT32 m_rpindex;
- UINT64 m_wpdata;
- UINT64 m_wpaddr;
+ UINT64 m_wpdata;
+ UINT64 m_wpaddr;
std::unique_ptr<UINT64[]> m_tempvar;
- osd_ticks_t m_last_periodic_update_time;
+ osd_ticks_t m_last_periodic_update_time;
- bool m_comments_loaded;
+ bool m_comments_loaded;
};
#endif
-