mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
oops (nw)
This commit is contained in:
parent
d3e714fb9b
commit
e5bbf53153
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user