1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-23 05:19:20 +00:00

Merge pull request #1636 from TomHarte/BiquadAttribution

Record references for the SID and biquad filter.
This commit is contained in:
Thomas Harte
2025-11-14 13:29:55 -05:00
committed by GitHub
2 changed files with 8 additions and 1 deletions

View File

@@ -8,6 +8,12 @@
#include "SID.hpp"
// Sources used:
//
// (1) SID Article v0.2 at https://github.com/ImreOlajos/SID-Article
// (2) Technical SID Information/Software stuff at http://www.sidmusic.org/sid/sidtech2.html
// (3) SID 6581/8580 (Sound Interface Device) reference at https://oxyron.de/html/registers_sid.html
using namespace MOS::SID;
SID::SID(Concurrency::AsyncTaskQueue<false> &audio_queue) :

View File

@@ -22,7 +22,8 @@ namespace SignalProcessing {
It is used quite often in real designs, hence an implementation of this filter specifically.
(And the below is largely textbook; I can't claim any great knowledge)
... and the below is largely textbook; I can't claim any great knowledge. I am especially indebted to
the W3C Group's audio EQ cookbook at https://www.w3.org/TR/audio-eq-cookbook/ .
*/
class BiquadFilter {
public: