Search found 3 matches
- Sat Apr 28, 2012 1:26 am
- Forum: Snes9x Tech Support and Bug Tracking
- Topic: SPC-700 APU DSP FIR filter
- Replies: 4
- Views: 16231
Re: SPC-700 APU DSP FIR filter
In this subroutine https://github.com/snes9xgit/snes9x/blob/master/apu/bapu/dsp/SPC_DSP.cpp#L593 // Gaussian interpolation { int output = interpolate( v ); // Noise if ( m.t_non & v->vbit ) output = (int16_t) (m.noise * 2); // Apply envelope m.t_output = (output * v->env) >> 11 & ~1; v->t_en...
- Sat Apr 28, 2012 12:11 am
- Forum: Snes9x Tech Support and Bug Tracking
- Topic: SPC-700 APU DSP FIR filter
- Replies: 4
- Views: 16231
Re: SPC-700 APU DSP FIR filter
Thanks BearOso :) that is of great help, I am reading them In this https://github.com/snes9xgit/snes9x/blob/master/apu/bapu/dsp/SPC_DSP.cpp#L593 at line 385 inline VOICE_CLOCK( V1 ) { m.t_dir_addr = m.t_dir * 0x100 + m.t_srcn * 4; m.t_srcn = VREG(v->regs,srcn); } should the two statements be reverse...
- Tue Apr 24, 2012 3:52 am
- Forum: Snes9x Tech Support and Bug Tracking
- Topic: SPC-700 APU DSP FIR filter
- Replies: 4
- Views: 16231
SPC-700 APU DSP FIR filter
Hello,
Anyone have the FIR Filter equation in the SPC700 DSP echo block ?
I am interest to know how setting the FIR coefficients will affect the echo feedback.
Thanks
Anyone have the FIR Filter equation in the SPC700 DSP echo block ?
I am interest to know how setting the FIR coefficients will affect the echo feedback.
Thanks