summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-04-19 10:33:11 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-04-19 10:33:31 -0400
commit265f1efc76ef747a96b46ca1355c0e40e4167e29 (patch)
tree00e65cb4d8ffebb96936283e4a03b1e0d48781e2
parent729f1b42ea880722adfa90e5309f8dabe258d63e (diff)
genpc.cpp: Fix faulty EOP propagation that broke floppy disk loading (nw)
-rw-r--r--src/devices/machine/genpc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/genpc.cpp b/src/devices/machine/genpc.cpp
index 3163fa1d9c5..e1ef5b74e8c 100644
--- a/src/devices/machine/genpc.cpp
+++ b/src/devices/machine/genpc.cpp
@@ -129,7 +129,7 @@ void ibm5160_mb_device::pc_dma8237_0_dack_w(uint8_t data)
WRITE_LINE_MEMBER( ibm5160_mb_device::pc_dma8237_out_eop )
{
m_cur_eop = state == ASSERT_LINE;
- if(m_dma_channel != -1 && m_cur_eop)
+ if(m_dma_channel != -1)
m_isabus->eop_w(m_dma_channel, m_cur_eop ? ASSERT_LINE : CLEAR_LINE );
}