1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-24 05:18:36 +00:00

Splits the lowpass filter into push and pull variants.

This commit is contained in:
Thomas Harte
2021-11-21 15:37:29 -05:00
parent 491b9f83f2
commit f5d3d6bcea
16 changed files with 231 additions and 163 deletions
+1 -1
View File
@@ -483,7 +483,7 @@ class ConcreteMachine:
Concurrency::DeferringAsyncTaskQueue audio_queue_;
GI::AY38910::AY38910<false> ay_;
Outputs::Speaker::LowpassSpeaker<GI::AY38910::AY38910<false>> speaker_;
Outputs::Speaker::PullLowpass<GI::AY38910::AY38910<false>> speaker_;
HalfCycles cycles_since_audio_update_;
JustInTimeActor<DMAController> dma_;