diff --git a/Machines/PCCompatible/DMA.hpp b/Machines/PCCompatible/DMA.hpp index d0ff6e077..d873dffaf 100644 --- a/Machines/PCCompatible/DMA.hpp +++ b/Machines/PCCompatible/DMA.hpp @@ -29,7 +29,8 @@ class i8237 { flip_flop_reset(); for(auto &channel : channels_) { channel.mask = true; - channel.transfer_complete = channel.request = false; + channel.transfer_complete = true; + channel.request = false; } }