From 3bfdc140b555474031dce0d617f334274c554350 Mon Sep 17 00:00:00 2001 From: Dag Lem Date: Mon, 29 May 2023 10:09:05 +0200 Subject: [PATCH] Keep within timing budget of 20 cycles Only one pause of the voice pipeline is needed, the second pause only served to simplify debugging with simulation. --- gateware/sid_api.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateware/sid_api.sv b/gateware/sid_api.sv index 1652d26..9d76feb 100644 --- a/gateware/sid_api.sv +++ b/gateware/sid_api.sv @@ -43,7 +43,7 @@ module sid_api ( always_comb begin // Idling of voice pipeline. - voice_cycle_idle = filter_cycle == 4 || filter_cycle == 5 || filter_cycle == 9 || filter_cycle == 10; + voice_cycle_idle = filter_cycle == 4 || filter_cycle == 5; voice_cycle = voice_cycle_idle ? 0 : voice_cycle_count; end