My Tremolo alforithm doesn't work...why??

Algorithm development and general DSP issues

Moderator: frank

Post Reply
noctombule
Posts: 1
Joined: Mon Dec 02, 2013 2:21 pm

My Tremolo alforithm doesn't work...why??

Post by noctombule »

Hello,

I'm a beginner with programming DSP. I try simply to make a tremelo effect. So I began to use an external LFO and plug it in the VC-P1 input an multiply this signal by the left input signal. The code is:

Code: Select all

equ POT0fil reg0

ldax POT0		;read pot0
rdfx POT0fil,0.01		;filter the values
wrax POT0fil,0		;write values filtered to register pot0fil and clear acc

rdax adcl,0.25		; read left input values
mulx POT0fil		; multiply left input with POT0fil values

wrax dacl,0
frank
Posts: 1244
Joined: Wed Oct 19, 2005 12:26 pm
Contact:

Post by frank »

I would start with the most basic things and remove the filter on POT0, not needed since you are using an LFO so I would try:

Code: Select all

ldax adcl
mulx POT0
wrax dacl,0
Frank Thomson
Experimental Noize
Post Reply