Search found 116 matches

by slacker
Tue Jul 05, 2011 10:41 am
Forum: Algorithm development
Topic: Whammy
Replies: 14
Views: 28812

Nice, thanks for sharing it. I tried it and it works fine, the response feels fast there's possibly a little bit of lag if you very quickly give pot0 a full turn but nothing to worry about.

Once you have made pot1 select the intervals it will be a very nice effect.
by slacker
Sat Jun 11, 2011 8:44 am
Forum: Algorithm development
Topic: Attempt at Jonny Greedwood's Max MSP delay effect
Replies: 5
Views: 20213

Attempt at Jonny Greedwood's Max MSP delay effect

Just for a laugh I thought I'd try and do something similar to Jonny Greenwood's Max MSP random delay effect. In case you've never heard of it here's a youtube clip of it in action http://www.youtube.com/watch?v=xyKCwDJ7ZUc It's based on Franks record/play example here http://www.spinsemi.com/forum/...
by slacker
Sat Jun 04, 2011 5:05 am
Forum: FV-1 software questions
Topic: Instructions of SpinASM
Replies: 13
Views: 17243

Using LDAX just means you don't need to worry about what was in the accumulator from the previous instruction. I use it as a fail safe, in the event that I've not cleared the accumulator with the previous instruction. Or like the example on the website, there might be times when it saves you a line ...
by slacker
Wed Jun 01, 2011 10:43 am
Forum: Algorithm development
Topic: Implementing step phase/flange
Replies: 13
Views: 18269

I haven't gone through the whole thing but I think the reason you're getting no output is here wrax phaout, 0.0 ;write result to phaout and clear acc ; sof 1.999, 0 ;scale gain back up wrax dacr, 1.0 ;write to right output, save accumulator wrax dacl, 1.0 ;write to left output, clear acc You're taki...
by slacker
Thu May 12, 2011 2:29 pm
Forum: Algorithm development
Topic: Flanger
Replies: 1
Views: 5417

Flanger

Thought I'd share this flanger I've been working on. Still needs some work, I'm not happy with the speed range of the LFO and the code needs tidying up a bit. Hopefully the comments explain what's going on. Big thanks to Frank and everyone else who worked on the knowledge base and anyone who's contr...
by slacker
Wed Apr 20, 2011 9:42 am
Forum: Algorithm development
Topic: Synth
Replies: 22
Views: 26986

I think this is what Frank meant. It gives you 8 bit "white noise", you can change the AND mask to give more or less bits ie: and %000000000000000000001111 would be 4 bit. I haven't experimented to see what the maximum number of bits you can use is before it stops being noise. rdax adcl,1 ...
by slacker
Sun Mar 27, 2011 8:01 am
Forum: Algorithm development
Topic: 8-bit waveform generator??
Replies: 19
Views: 24468

Here's a simple sawtooth generator, there's probably much better ways to do it, but it works Ok. If you wanted you can use the saw to generate other waveforms, rectify it to get a triangle, clip this to get a sine, compare it to something to get a square/pulse wave. Messing with the "steps"...
by slacker
Mon Mar 14, 2011 1:34 pm
Forum: Algorithm development
Topic: Looper / "sound on sound"
Replies: 2
Views: 6249

Have a look at the guitar echo here for ideas http://www.spinsemi.com/forum/viewtopic.php?t=124 , if you set it to maximum feedback it does what you're trying to do.
by slacker
Sat Mar 12, 2011 9:57 am
Forum: Algorithm development
Topic: Any thoughts on implementing an "infinite hold" ef
Replies: 42
Views: 72866

I think your pot scaling is wrong, the maximum length is 32767 so to get to 8148 you need to deivide by 4 not 2. What's probably happening now is once you get past half way you'e gone outside the buffer.
by slacker
Sat Mar 12, 2011 6:11 am
Forum: Algorithm development
Topic: Any thoughts on implementing an "infinite hold" ef
Replies: 42
Views: 72866

The way you've done the code for the pot it's just stuck at the end of the program and doesn't do anything. What the code does is read the value from the pot and writing it to the delay memory address pointer. In order to make it do anything you then need to read from the address pointer instead of ...
by slacker
Tue Feb 01, 2011 1:30 pm
Forum: FV-1 hardware questions
Topic: delay not working
Replies: 4
Views: 7671

I don't know if this is the answer to your problem but on the pitch echo program the pitch shift is on one channel and the echo is on the other, so if you only use one output you may only get pitch shifting. Presumably the same thing would happen if you only use one of the inputs. Any problems with ...