Revert previous z80dma fix (made it specific to the MESS driver), not worth

This commit is contained in:
Angelo Salese 2010-09-04 16:01:16 +00:00
parent 1ca12dce6f
commit bcf5b7a661

View File

@ -857,7 +857,7 @@ void z80dma_device::rdy_write_callback(int state)
void z80dma_device::rdy_w(int state)
{
if (LOG) logerror("RDY: %d Active High: %d\n", state, READY_ACTIVE_HIGH);
timer_call_after_resynch(&m_machine, (void *)this, state == READY_ACTIVE_HIGH, static_rdy_write_callback);
timer_call_after_resynch(&m_machine, (void *)this, state, static_rdy_write_callback);
}