Polyphonic: Up to 64 simultaneous voices
A voice can chain MIDI note and trigger/velocity level to one or two other voices
%%{init:{'flowchart': {'nodePadding': 20},{'rankSpacing': 20}}}%%
graph TD
w(waveform)
v(voice)
f("frequency<br>→mod")
c("phase distortion<br>→mod")
h("sample & hold (down-sampling)")
q("quantizer (bit-reduction)")
J("multi-mode filter (LP/HP/BP/Notch/AP)")
a("amplitude<br>→mod<br>ADSR→")
X((mod))
p("panner<br>→mod")
v-->w;
w-->f;
f-->c;
c-->h;
h-->q;
q-->J;
J-->a;
a-->X;
X-->p;
p-->L & R;