Update volume_multiplier testbench and adjust simulation settings; refactor balance_controller and effect_selector logic

This commit is contained in:
2025-05-23 11:12:07 +02:00
parent fd7bac0da1
commit d3dd458825
8 changed files with 224 additions and 38 deletions

View File

@@ -35,14 +35,14 @@ BEGIN
ELSE
balance <= jstck_x;
IF effect = '0' THEN
IF effect = '1' THEN
-- LFO control
lfo_period <= jstck_y;
ELSE
-- volume/balance control
volume <= jstck_y;
lfo_period <= (OTHERS => '0');
ELSE
-- LFO control
lfo_period <= jstck_y;
END IF;