1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Goes big on flushing.

This commit is contained in:
Thomas Harte 2019-11-03 23:03:50 -05:00
parent eeafdf2c03
commit 8df1eea955

View File

@ -341,8 +341,13 @@ class ConcreteMachine:
}
void flush() {
audio_queue_.perform();
dma_.flush();
mfp_.flush();
keyboard_acia_.flush();
midi_acia_.flush();
video_.flush();
update_audio();
audio_queue_.perform();
}
private: