oops (nw)

This commit is contained in:
Olivier Galibert 2012-09-11 04:42:29 +00:00
parent d3e714fb9b
commit e5bbf53153
2 changed files with 2 additions and 2 deletions

View File

@ -227,7 +227,7 @@ WRITE_LINE_MEMBER( at_state::at_dma8237_out_eop )
{
m_cur_eop = state == ASSERT_LINE;
if(m_dma_channel != -1)
m_isabus->eop_w(m_dma_channel, ASSERT_LINE );
m_isabus->eop_w(m_dma_channel, m_cur_eop ? ASSERT_LINE : CLEAR_LINE );
}
void at_state::pc_set_dma_channel(int channel, int state)

View File

@ -403,7 +403,7 @@ WRITE_LINE_MEMBER( southbridge_device::at_dma8237_out_eop )
{
m_cur_eop = state == ASSERT_LINE;
if(m_dma_channel != -1)
m_isabus->eop_w(m_dma_channel, ASSERT_LINE );
m_isabus->eop_w(m_dma_channel, m_cur_eop ? ASSERT_LINE : CLEAR_LINE );
}
void southbridge_device::pc_select_dma_channel(int channel, bool state)