diff options
Diffstat (limited to 'src/devices/cpu/am29000')
-rw-r--r-- | src/devices/cpu/am29000/am29000.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/am29000/am29000.cpp b/src/devices/cpu/am29000/am29000.cpp index b66c5163e1e..d4039c18916 100644 --- a/src/devices/cpu/am29000/am29000.cpp +++ b/src/devices/cpu/am29000/am29000.cpp @@ -628,7 +628,7 @@ void am29000_cpu_device::fetch_decode() void am29000_cpu_device::execute_run() { - uint32_t call_debugger = (machine().debug_flags & DEBUG_FLAG_ENABLED) != 0; + const bool call_debugger = debugger_enabled(); external_irq_check(); |