diff options
Diffstat (limited to 'src/devices/cpu/mcs96/mcs96ops.lst')
-rw-r--r-- | src/devices/cpu/mcs96/mcs96ops.lst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/mcs96/mcs96ops.lst b/src/devices/cpu/mcs96/mcs96ops.lst index b6242a35a70..72db19afc0f 100644 --- a/src/devices/cpu/mcs96/mcs96ops.lst +++ b/src/devices/cpu/mcs96/mcs96ops.lst @@ -16,7 +16,7 @@ fetch check_irq(); } PPC = PC; - if(machine().debug_flags & DEBUG_FLAG_ENABLED) + if(debugger_enabled()) debugger_instruction_hook(PC); OP1 = read_pc(); if(OP1 == 0xfe) { @@ -27,7 +27,7 @@ fetch fetch_noirq PPC = PC; - if(machine().debug_flags & DEBUG_FLAG_ENABLED) + if(debugger_enabled()) debugger_instruction_hook(PC); OP1 = read_pc(); if(OP1 == 0xfe) { |