Search found 7 matches

by lymark
Tue Apr 12, 2022 3:26 am
Forum: Algorithm development
Topic: Simple Noise Gate
Replies: 3
Views: 11924

Re: Simple Noise Gate

There is another question, if the decay_flag can only have 0, then the following code cannot be executed. ldax decay_flag skp gez, FADE ldax count rdax tick, 1 ;add 1/32768 wrax count, 1 rdax release, -1 skp neg, FINAL ;tick counter has not reached release time, so hold with gain_redux = 0 sof 0, 0....
by lymark
Tue Apr 12, 2022 1:40 am
Forum: Algorithm development
Topic: Simple Noise Gate
Replies: 3
Views: 11924

Re: Simple Noise Gate

I have learned the above code, I have a question:

Code: Select all

OVER:
wrax count, 0			;if signal over threshold, clear count

Is it possible to change to this:

Code: Select all

OVER:
sof 0,0
wrax count, 0			;if signal over threshold, clear count

Used to ensure count is 0.
by lymark
Thu Mar 31, 2022 12:53 am
Forum: Algorithm development
Topic: Questions about modulating delay lines.
Replies: 2
Views: 5814

Re: Questions about modulating delay lines.

Thank you very much, Frank.
by lymark
Wed Mar 30, 2022 2:39 am
Forum: Algorithm development
Topic: Questions about modulating delay lines.
Replies: 2
Views: 5814

Questions about modulating delay lines.

The codes I see in a Reverb + Shimmer : MEM d1 2437 ;-------------- Initialize LFOs etc ------------------- SKP RUN,end_init WLDS SIN0,25,100 ; Sin LFO for reverb "smoothing". (25 ==> 1Hz) end_init: ;------------------------------------------------- ;-- Reverb smoothing (modulate delay lin...
by lymark
Fri Jan 22, 2021 2:18 am
Forum: Algorithm development
Topic: A question about "rom_fla_rev.spn".
Replies: 0
Views: 38315

A question about "rom_fla_rev.spn".

The following code: or fladel_138 < 8 ;fladel^ + 138 ;get midpoint address pointer I think I don't understand what this code does. '< 'Means to move to the left 8 bits? Can it be written as `fladel^ + 138`? Thank you very much who can answer me。 :D The entire code is as follows: ;Guitar reverb/flang...
by lymark
Tue Jan 05, 2021 10:04 am
Forum: Algorithm development
Topic: A question about the example code (rom_trem_rev.spn)
Replies: 2
Views: 6412

Re: A question about the example code (rom_trem_rev.spn)

Thank you very much for you reply,as I guessed it.
In addition,reg5 rfil was never actually used.
by lymark
Tue Jan 05, 2021 1:26 am
Forum: Algorithm development
Topic: A question about the example code (rom_trem_rev.spn)
Replies: 2
Views: 6412

A question about the example code (rom_trem_rev.spn)

I downloaded and tested the example code (rom_trem_rev.spn) and it seems to work well. But there is a question that puzzles me. -------------- mem d1 2180 . . rda d1+3000, 1.0 d1 ram memory is 2180,but read from d1+3000,Is this a problem? Is it beyond the range of d1? My understanding is wrong? sorr...