1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Merge pull request #1044 from TomHarte/MacintoshAudio

Add missing `flush`.
This commit is contained in:
Thomas Harte 2022-06-05 09:20:08 -04:00 committed by GitHub
commit d4c1e92b1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,6 +190,7 @@ template <Analyser::Static::Macintosh::Target::Model model> class ConcreteMachin
void run_for(const Cycles cycles) final {
mc68000_.run_for(cycles);
flush();
}
using Microcycle = CPU::MC68000Mk2::Microcycle;