diff options
Diffstat (limited to 'src/devices/cpu/z180/z180op.inc')
-rw-r--r-- | src/devices/cpu/z180/z180op.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/z180/z180op.inc b/src/devices/cpu/z180/z180op.inc index b3005629a78..c00515ee9a5 100644 --- a/src/devices/cpu/z180/z180op.inc +++ b/src/devices/cpu/z180/z180op.inc @@ -310,8 +310,8 @@ int z180_device::take_interrupt(int irq) if( irq == Z180_INT_IRQ0 ) { /* Daisy chain mode? If so, call the requesting device */ - if (m_daisy.present()) - irq_vector = m_daisy.call_ack_device(); + if (daisy_chain_present()) + irq_vector = daisy_call_ack_device(); /* else call back the cpu interface to retrieve the vector */ else |