1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Moved responsibility for throwing in a low-pass filter up to the Vic, appropriately.

This commit is contained in:
Thomas Harte
2016-08-21 18:13:31 -04:00
parent c783090980
commit 1541273785
3 changed files with 13 additions and 15 deletions
+1 -5
View File
@@ -15,11 +15,7 @@ Speaker::Speaker() :
_control_registers{0, 0, 0, 0},
_shift_registers{0, 0, 0, 0},
_counters{2, 1, 0, 0} // create a slight phase offset for the three channels
{
// The Vic has a 1.6Khz low-pass filter;
// TODO: this is part of the Vic-20, not part of the 6560. So relocate it.
set_high_frequency_cut_off(1600);
}
{}
void Speaker::set_volume(uint8_t volume)
{