From ef37b09a785af19755d0d1b6cc3670fd9b69fbc7 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 30 Nov 2023 22:47:38 -0500 Subject: [PATCH] Seed all transfers as complete. --- Machines/PCCompatible/DMA.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } }