Skip to content

Commit

Permalink
Keep within timing budget of 20 cycles
Browse files Browse the repository at this point in the history
Only one pause of the voice pipeline is needed, the second pause
only served to simplify debugging with simulation.
  • Loading branch information
daglem committed May 29, 2023
1 parent 7cbc4a4 commit 3bfdc14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateware/sid_api.sv
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3bfdc14

Please sign in to comment.