1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-29 16:55:59 +00:00

Seed all transfers as complete.

This commit is contained in:
Thomas Harte 2023-11-30 22:47:38 -05:00
parent 9fc0d411fd
commit ef37b09a78

View File

@ -29,7 +29,8 @@ class i8237 {
flip_flop_reset(); flip_flop_reset();
for(auto &channel : channels_) { for(auto &channel : channels_) {
channel.mask = true; channel.mask = true;
channel.transfer_complete = channel.request = false; channel.transfer_complete = true;
channel.request = false;
} }
} }