mirror of
https://github.com/holub/mame
synced 2025-07-05 09:57:47 +03:00
exclude a few more codebits with FASTDEBUG=1 (nw)
This commit is contained in:
parent
1ce67356bc
commit
b8290fdeab
@ -45,8 +45,10 @@ void debugger_flush_all_traces_on_abnormal_exit(void);
|
||||
|
||||
INLINE void debugger_instruction_hook(device_t *device, offs_t curpc)
|
||||
{
|
||||
#ifndef MAME_DEBUG_FAST
|
||||
if ((device->machine().debug_flags & DEBUG_FLAG_CALL_HOOK) != 0)
|
||||
device->debug()->instruction_hook(curpc);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
@ -118,7 +118,14 @@ public:
|
||||
real_profiler_state();
|
||||
|
||||
// getters
|
||||
bool enabled() const { return m_filoptr != NULL; }
|
||||
bool enabled() const
|
||||
{
|
||||
#ifndef MAME_DEBUG_FAST
|
||||
return m_filoptr != NULL;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
const char *text(running_machine &machine);
|
||||
|
||||
// enable/disable
|
||||
|
Loading…
Reference in New Issue
Block a user