Few things worth mentioning.
a) I offer ad-hoc support (that is, if I see your question, I'll try to answer it) for SpinCAD issues over at the diystompboxes forum in the DSP area.
b) People will always be better able to help you if you include code.
c) I went and found the "spincadbuilder" source for the Hall Reverb, which is here
https://github.com/HolyCityAudio/SpinCA ... ll.spincad
d) Many of the included blocks in SpinCAD, especially the reverb blocks, were taken and adapted from the free programs here at Spin's website, or sometimes posts in the forum itself.
e) I double checked the code and found this:
Code: Select all
equ gain 0.5
@sliderLabel gain Input_Gain -24 0 -6 1.0 1 DBLEVEL
;feed inputs to predelay:
... [some code missing here]
rdax input, gain
; rdax adcr,0.25 ;leave headroom
wra pdel,0 ;write to predelay
The reference code multiplies the input by 0.25 (- 12 dB) before anything else, to "leave headroom". I replaced that with the "rdax, input, gain" line but
gain defaults to 0.5 (-6 dB). Clever, wasn't I?
Years later, I now know that it's easy to overload the cascaded all-pass stages which are generally the first thing you hit in one of these FV-1 reverbs. This makes a nasty clicking noise. Is it what you're hearing? Not sure but a good place to start.
So, for starters I suggest you reduce the gain value in the Hall Reverb control panel to 0.25 (-12 dB). Does it help?
DL